account/Cargo.toml

53 lines
1.1 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 = "0.5.1"
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"
2025-02-27 21:49:37 +01:00
bcrypt = "0.17.0"
sqlx = { version = "0.8.3", features = [ "runtime-tokio", "tls-native-tls", "postgres", "chrono", "ipnetwork" ] }
2025-03-05 20:28:25 +01:00
aes = "0.8.4"
hmac = "0.12.1"
md-5 = "0.10.6"
cbc = "0.1.2"
mii = { path = "./mii" }
minio = { git = "https://github.com/minio/minio-rs.git" }
crc32fast = "1.4.2"
gxhash = "3.4.1"
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-03-09 23:47:46 +01:00
[build-dependencies]
2025-04-26 13:38:11 +02:00
tonic-build = "0.12.3"