trifid/trifid-api/Cargo.toml

29 lines
1.1 KiB
TOML
Raw Normal View History

2023-02-02 23:38:39 +00:00
[package]
name = "trifid-api"
version = "0.1.0"
edition = "2021"
# 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-04-02 16:08:36 +00:00
serde = { version = "1", features = ["derive"] } # Serialization and deserialization
once_cell = "1" # Config
toml = "0.7" # Config
log = "0.4" # Logging
simple_logger = "4" # Logging
sea-orm = { version = "^0", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]} # Database
2023-04-02 17:06:16 +00:00
trifid_api_migration = { version = "0.1.0", path = "trifid_api_migration" } # Database
trifid_api_entities = { version = "0.1.0", 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.
trifid-pki = { version = "0.1.9" } # Cryptography
chacha20poly1305 = "0.10.1" # Cryptography