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]
|
2025-04-28 11:26:32 +02:00
|
|
|
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"
|
2026-04-28 22:00:59 +00:00
|
|
|
quick-xml = { version = "0.39.0", 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"
|
2026-04-29 00:01:09 +00:00
|
|
|
sha2 = "0.11.0"
|
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"
|
2025-03-08 00:53:11 +01:00
|
|
|
sqlx = { version = "0.8.3", features = [ "runtime-tokio", "tls-native-tls", "postgres", "chrono", "ipnetwork" ] }
|
2026-04-28 18:34:38 +02:00
|
|
|
aes = "0.8.4"
|
2025-03-05 20:28:25 +01:00
|
|
|
hmac = "0.12.1"
|
2026-04-28 21:00:48 +00:00
|
|
|
md-5 = "0.11.0"
|
2025-03-05 20:28:25 +01:00
|
|
|
cbc = "0.1.2"
|
|
|
|
|
mii = { path = "./mii" }
|
|
|
|
|
crc32fast = "1.4.2"
|
2025-03-07 15:14:43 +01:00
|
|
|
gxhash = "3.4.1"
|
2026-04-29 08:00:57 +00:00
|
|
|
sentry = "0.48.0"
|
2025-06-06 11:53:23 +02:00
|
|
|
rocket_cors = "0.6.0"
|
2025-03-07 15:14:43 +01:00
|
|
|
|
2026-04-28 20:00:49 +00:00
|
|
|
juniper = { version = "0.17.0", features = ["chrono"] }
|
2026-04-28 23:13:33 +02:00
|
|
|
juniper_rocket = "0.10.0"
|
2025-03-09 23:47:46 +01:00
|
|
|
|
2026-04-28 22:00:50 +00:00
|
|
|
prost = "0.14.0"
|
2025-04-26 13:38:11 +02:00
|
|
|
lettre = "0.11.15"
|
2026-04-29 10:42:09 +02:00
|
|
|
rand = { version = "0.10.0", features = ["std"] }
|
2026-04-28 23:01:17 +00:00
|
|
|
reqwest = "0.13.0"
|
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"
|
2026-04-29 10:42:09 +02:00
|
|
|
hickory-resolver = { version = "0.24", features = ["tokio-runtime"] }
|