-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (69 loc) · 2.19 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (69 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "nyxid"
version = "0.2.0"
edition = "2024"
license.workspace = true
repository.workspace = true
[dependencies]
axum = { workspace = true }
tower = "0.5.3"
tower-http = { version = "0.6.8", features = ["cors", "trace", "request-id", "limit"] }
tokio = { workspace = true }
mongodb = { workspace = true }
bson = { workspace = true }
futures = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
jsonwebtoken = { version = "10.3", default-features = false, features = ["use_pem", "aws_lc_rs"] }
argon2 = "0.5.3"
aes-gcm = "0.10.3"
sha2 = "0.10.9"
rand = "0.9.2"
hex = "0.4.3"
base64 = "0.22.1"
rsa = { version = "0.9.10", features = ["pem"] }
totp-rs = { version = "5.7.1", features = ["qr", "gen_secret"] }
validator = { version = "0.20", features = ["derive"] }
governor = "0.10"
reqwest = { version = "0.12.28", features = ["json", "stream", "rustls-tls", "http2"], default-features = false }
utoipa = { version = "5.4", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "9.0", features = ["axum"] }
bytes = "1.11"
anyhow = "1.0.101"
thiserror = "2.0.18"
dotenvy = "0.15.7"
clap = { version = "4.6", features = ["derive"] }
dirs = "6"
open = "5"
rpassword = "7"
subtle = "2"
url = "2.5"
urlencoding = "2.1"
zeroize = "1"
async-trait = "0.1"
regex = "1.12.3"
serde_bytes = "0.11"
tokio-stream = "0.1"
dashmap = "6"
hmac = "0.12"
async-stream = "0.3"
ed25519-dalek = { version = "2", features = ["alloc"] }
ssh-key = { version = "0.6.7", features = ["ed25519", "getrandom"] }
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots"] }
# Optional KMS provider dependencies (behind feature flags)
aws-config = { version = "1", optional = true }
aws-sdk-kms = { version = "1", optional = true }
google-cloud-kms = { version = "0.6", optional = true }
russh = "0.58.0"
tempfile = "3.27.0"
pty-process = { version = "0.5.3", features = ["async"] }
nix = { version = "0.31.2", features = ["term"] }
libc = "0.2.184"
[features]
default = []
aws-kms = ["aws-config", "aws-sdk-kms"]
gcp-kms = ["google-cloud-kms"]