-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (111 loc) · 3.43 KB
/
Copy pathCargo.toml
File metadata and controls
119 lines (111 loc) · 3.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[package]
name = "rust-true"
version = "0.1.0"
edition = "2021"
default-run = "rust-true"
[features]
default = ["webauthn"]
sso = ["quick-xml"]
webauthn = ["webauthn-rs", "webauthn-rs-proto"]
[profile.dev]
debug = 1
[profile.dev.package."*"]
debug = 0 # Disable debug info for all dependencies
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dev-dependencies]
goose = "0.18.1"
[dependencies]
argon2 = { version = "0.5", features = ["std"] }
pbkdf2 = { version = "0.12", features = ["simple"] }
scrypt = { version = "0.11", features = ["simple"] }
password-hash = { version = "0.5", features = ["std"] }
async-trait = "0.1.83"
axum = { version = "0.8.7", features = [
"multipart",
"macros",
] } # Latest version
chrono = { version = "0.4.42", features = ["serde"] }
jsonwebtoken = { version = "9.3", default-features = false }
scylla = { version = "1.4.1", features = ["chrono-04"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7.1"
tokio = { version = "1.48.0", features = ["full"] }
tower = { version = "0.5", features = ["buffer", "limit"] }
tower-http = { version = "0.6", features = [
"cors",
"fs",
"trace",
"compression-full",
] }
uuid = { version = "1.18.1", features = ["v4", "serde"] }
validator = { version = "0.20", features = ["derive"] } # Upgraded to 0.20
resend-rs = "0.19" # Upgraded to 0.19
utoipa = { version = "5.4", features = ["axum_extras", "chrono", "uuid"] }
utoipa-swagger-ui = { version = "9", features = ["axum"] } # Upgraded to 9
oauth2 = "5.0"
reqwest = { version = "0.12.24", features = ["json"] }
zxcvbn = "3.1"
woothee = "0.13"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
toml = "0.9.8"
lettre = { version = "0.11", features = [
"tokio1",
"builder",
"tokio1-native-tls",
] }
totp-rs = { version = "5.7", features = ["qr", "gen_secret"] }
notify = "8.2.0" # File system notifications for config hot-reload
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
rand = "0.9.2" # Latest version
tokio-metrics = "0.4.5"
metrics = "0.24"
metrics-exporter-prometheus = { version = "0.17", default-features = false }
opentelemetry = "0.31.0"
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic"] }
tracing-opentelemetry = "0.32"
base64 = "0.22.1"
csv = "1.3"
arc-swap = "1.7.1"
config = { version = "0.15.19", default-features = false, features = ["toml"] }
regex = "1.12.2"
md5 = "0.8.0"
redis = { version = "0.32.7", features = ["tokio-comp", "connection-manager"] }
futures = "0.3.31"
anyhow = "1.0.100"
thiserror = "2.0.17"
rayon = "1.11.0"
num_cpus = "1.16"
sysinfo = "0.37.2"
tracing-loki = "0.2.6"
url = "2.5.7"
mimalloc = "0.1.48"
socket2 = "0.6.1"
axum-extra = { version = "0.12.2", features = ["cookie"] }
opentelemetry-stdout = "0.31.0"
bumpalo = { version = "3.19.0", features = ["collections", "boxed", "serde"] }
moka = { version = "0.12.11", features = ["future"] }
urlencoding = "2.1.3"
quick-xml = { version = "0.38", features = ["serialize"], optional = true }
webauthn-rs = { version = "0.5", features = [
"danger-allow-state-serialisation",
], optional = true }
webauthn-rs-proto = { version = "0.5", optional = true }
sea-orm = { version = "1.1.19", features = [
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
] }
sea-orm-migration = "1.1.19"
log = "0.4.29"