All checks were successful
Build and Test / account (push) Successful in 7m48s
Basically I removed all the warnings, removed some old APIs no longer in use, added cert verification to DB, im just cool like that.
64 lines
1.4 KiB
TOML
64 lines
1.4 KiB
TOML
[package]
|
|
name = "account"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.prod]
|
|
inherits = "release"
|
|
overflow-checks = false
|
|
strip = true
|
|
debug = false
|
|
debug-assertions = false
|
|
lto = true
|
|
incremental = false
|
|
|
|
[dependencies]
|
|
rocket = { version = "0.5.1", features = ["json"] }
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
log = "0.4.26"
|
|
quick-xml = { version = "0.37.2", features = ["serialize"] }
|
|
tokio = "1.43.0"
|
|
dotenvy = "0.15.7"
|
|
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"
|
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
|
base64 = "0.22.1"
|
|
hex = "0.4.3"
|
|
thiserror = "2.0.11"
|
|
bcrypt = "0.17.0"
|
|
sqlx = { version = "0.8.3", features = [ "runtime-tokio", "tls-native-tls", "postgres", "chrono", "ipnetwork" ] }
|
|
aes = "0.8.4"
|
|
hmac = "0.12.1"
|
|
md-5 = "0.10.6"
|
|
cbc = "0.1.2"
|
|
mii = { path = "./mii" }
|
|
crc32fast = "1.4.2"
|
|
gxhash = "3.4.1"
|
|
sentry = "0.38.0"
|
|
rocket_cors = "0.6.0"
|
|
|
|
juniper = { version = "0.16.1", features = ["chrono"] }
|
|
juniper_rocket = "0.9.0"
|
|
|
|
tonic = "0.12.3"
|
|
prost = "0.13.4"
|
|
lettre = "0.11.15"
|
|
rand = "0.8.5"
|
|
reqwest = "0.12.12"
|
|
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"
|
|
time = "0.3.47"
|
|
hickory-resolver = { version = "0.24", features = ["tokio-runtime"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12.3"
|