trifid/trifid-api/Cargo.toml

45 lines
2.1 KiB
TOML
Raw Normal View History

2023-02-02 23:38:39 +00:00
[package]
name = "trifid-api"
version = "0.3.0"
2023-02-02 23:38:39 +00:00
edition = "2021"
2023-06-22 01:09:47 +00:00
description = "Pure-rust Defined Networking compatible management server"
license = "GPL-3.0-or-later"
documentation = "https://git.e3t.cc/~core/trifid"
homepage = "https://git.e3t.cc/~core/trifid"
repository = "https://git.e3t.cc/~core/trifid"
2023-02-02 23:38:39 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-04-02 19:25:52 +00:00
actix-web = "4" # Web framework
actix-request-identifier = "4" # Web framework
2023-05-31 17:24:15 +00:00
actix-cors = "0.6.4" # Web framework
2023-04-02 16:08:36 +00:00
serde = { version = "1", features = ["derive"] } # Serialization and deserialization
2023-04-03 22:39:49 +00:00
serde_json = "1.0.95" # Serialization and deserialization (cursors)
2023-04-02 16:08:36 +00:00
2023-05-14 17:47:49 +00:00
once_cell = "1" # Config
2023-09-26 13:14:42 +00:00
toml = "0.8" # Config / Serialization and deserialization
2023-05-14 17:47:49 +00:00
serde_yaml = "0.9.21" # Config / Serialization and deserialization
2023-04-02 16:08:36 +00:00
log = "0.4" # Logging
simple_logger = "4" # Logging
sea-orm = { version = "0.12", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]} # Database
2023-08-19 02:46:03 +00:00
trifid_api_migration = { version = "0.2", path = "trifid_api_migration" } # Database
trifid_api_entities = { version = "0.2", path = "trifid_api_entities" } # Database
2023-04-02 16:08:36 +00:00
rand = "0.8" # Misc.
hex = "0.4" # Misc.
2023-04-03 17:28:12 +00:00
totp-rs = { version = "5.0.1", features = ["gen_secret", "otpauth"] } # Misc.
2023-04-03 22:39:49 +00:00
base64 = "0.21.0" # Misc.
chrono = "0.4.24" # Misc.
derivative = "2.2.0" # Misc.
2023-04-03 17:28:12 +00:00
2023-09-26 13:14:42 +00:00
trifid-pki = { version = "0.1", features = ["serde_derive"] } # Cryptography
2023-05-14 17:47:49 +00:00
aes-gcm = "0.10.1" # Cryptography
ed25519-dalek = "2.0.0-rc.2" # Cryptography
2023-09-26 13:14:42 +00:00
dnapi-rs = { version = "0.2", path = "../dnapi-rs" } # API message types
2023-08-05 03:01:08 +00:00
ipnet = "2.7.2" # API message types