rust-boss/Cargo.toml

31 lines
911 B
TOML
Raw Permalink Normal View History

2026-02-12 11:56:29 +00:00
[package]
name = "rboss"
version = "0.1.0"
edition = "2024"
[dependencies]
rocket = { version = "0.5.1", features = ["json"] }
rocket_cors = "0.6.0"
dotenvy = "0.15.7"
sqlx = { version = "0.8.3", features = [ "postgres", "runtime-tokio", "macros", "chrono" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1"
quick-xml = { version = "0.31", features = [ "serialize" ] }
2026-04-23 17:19:49 +01:00
chrono = { version = "0.4", features = [ "serde" ] }
2026-02-12 11:56:29 +00:00
sha1 = "0.10"
sha2 = "0.10"
hex = "0.4"
hex-literal = "0.4"
aes = "0.8"
ctr = "0.9"
hmac = "0.12"
md-5 = "0.10"
rand = "0.8"
anyhow = "1.0"
base64 = "0.21"
2026-03-28 21:49:40 +00:00
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
aws-config = { version = "1.1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.17"
tokio = { version = "1.50.0", features = ["full"] }
log = "0.4.29"
keycloak-helper = { git = "https://git.spbr.net/bloxerhd018/keycloak-helper.git" }