29 lines
888 B
TOML
29 lines
888 B
TOML
[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]
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
base64 = "0.21.0"
|
|
log = "0.4.17"
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls" , "postgres" ] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
toml = "0.7.1"
|
|
serde = "1.0.152"
|
|
dotenvy = "0.15.6"
|
|
paste = "1.0.11"
|
|
totp-rs = { version = "4.2.0", features = ["qr", "otpauth", "gen_secret"]}
|
|
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics"]}
|
|
url = { version = "2.3.1", features = ["serde"] }
|
|
urlencoding = "2.1.2"
|
|
chrono = "0.4.23"
|
|
aes-gcm = "0.10.1"
|
|
hex = "0.4.3"
|
|
rand = "0.8.5"
|
|
trifid-pki = { version = "0.1.3", path = "../trifid-pki" }
|
|
sha2 = "0.10.6"
|
|
ipnet = { version = "2.7.1", features = ["serde"] }
|