45 lines
2.1 KiB
TOML
45 lines
2.1 KiB
TOML
[package]
|
|
name = "trifid-api"
|
|
version = "0.1.5"
|
|
edition = "2021"
|
|
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"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4" # Web framework
|
|
actix-request-identifier = "4" # Web framework
|
|
actix-cors = "0.6.4" # Web framework
|
|
|
|
serde = { version = "1", features = ["derive"] } # Serialization and deserialization
|
|
serde_json = "1.0.95" # Serialization and deserialization (cursors)
|
|
|
|
once_cell = "1" # Config
|
|
toml = "0.7" # Config / Serialization and deserialization
|
|
serde_yaml = "0.9.21" # Config / Serialization and deserialization
|
|
|
|
log = "0.4" # Logging
|
|
simple_logger = "4" # Logging
|
|
|
|
sea-orm = { version = "0.12", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]} # Database
|
|
trifid_api_migration = { version = "0.1.0", path = "trifid_api_migration" } # Database
|
|
trifid_api_entities = { version = "0.1.0", path = "trifid_api_entities" } # Database
|
|
|
|
rand = "0.8" # Misc.
|
|
hex = "0.4" # Misc.
|
|
totp-rs = { version = "5.0.1", features = ["gen_secret", "otpauth"] } # Misc.
|
|
base64 = "0.21.0" # Misc.
|
|
chrono = "0.4.24" # Misc.
|
|
derivative = "2.2.0" # Misc.
|
|
|
|
trifid-pki = { version = "0.1.9", features = ["serde_derive"] } # Cryptography
|
|
aes-gcm = "0.10.1" # Cryptography
|
|
ed25519-dalek = "2.0.0-rc.2" # Cryptography
|
|
|
|
dnapi-rs = { version = "0.1", path = "../dnapi-rs" } # API message types
|
|
ipnet = "2.7.2" # API message types
|