account/Cargo.toml

64 lines
1.4 KiB
TOML
Raw Normal View History

2025-02-23 19:33:55 +01:00
[package]
name = "account"
version = "0.1.0"
2025-03-05 20:28:25 +01:00
edition = "2024"
2025-03-07 11:47:31 +00:00
[profile.prod]
inherits = "release"
overflow-checks = false
strip = true
debug = false
debug-assertions = false
lto = true
incremental = false
2025-02-23 19:33:55 +01:00
[dependencies]
rocket = { version = "0.5.1", features = ["json"] }
2025-02-23 19:33:55 +01:00
serde = { version = "1.0.218", features = ["derive"] }
log = "0.4.26"
quick-xml = { version = "0.37.2", features = ["serialize"] }
2025-02-24 10:43:47 +01:00
tokio = "1.43.0"
dotenvy = "0.15.7"
2025-02-27 10:25:31 +01:00
once_cell = "1.20.3"
serde_json = "1.0.139"
chrono = { version = "0.4.39", features = ["serde"] }
argon2 = "0.5.3"
sha2 = "0.10.8"
2025-03-05 20:28:25 +01:00
bytemuck = { version = "1.21.0", features = ["derive"] }
2025-02-27 10:25:31 +01:00
base64 = "0.22.1"
hex = "0.4.3"
thiserror = "2.0.11"
2026-04-28 14:17:58 +00:00
bcrypt = "0.19.0"
sqlx = { version = "0.8.3", features = [ "runtime-tokio", "tls-native-tls", "postgres", "chrono", "ipnetwork" ] }
2026-04-28 14:17:46 +00:00
aes = "0.9.0"
2025-03-05 20:28:25 +01:00
hmac = "0.12.1"
md-5 = "0.10.6"
cbc = "0.1.2"
mii = { path = "./mii" }
crc32fast = "1.4.2"
gxhash = "3.4.1"
2025-05-10 11:24:27 +02:00
sentry = "0.38.0"
2025-06-06 11:53:23 +02:00
rocket_cors = "0.6.0"
2025-03-09 23:47:46 +01:00
juniper = { version = "0.16.1", features = ["chrono"] }
juniper_rocket = "0.9.0"
tonic = "0.12.3"
prost = "0.13.4"
2025-04-26 13:38:11 +02:00
lettre = "0.11.15"
rand = "0.8.5"
2025-04-27 11:04:57 +02:00
reqwest = "0.12.12"
2026-04-27 14:16:13 +02:00
binrw = "0.15.1"
ecdsa = { version = "0.16.9", features = ["pem", "std", "verifying"] }
sha256 = "1.6.0"
p256 = "0.13.2"
k256 = "0.13.4"
dsa = "0.6.3"
openssl = "0.10.78"
2026-04-26 21:57:28 +02:00
time = "0.3.47"
hickory-resolver = { version = "0.24", features = ["tokio-runtime"] }
2025-03-09 23:47:46 +01:00
[build-dependencies]
2025-04-26 13:38:11 +02:00
tonic-build = "0.12.3"