nxtgauge-backend-rust/crates/auth/Cargo.toml
Ashwin Kumar Sivakumar 8f0cf64eb4 fix: update jsonwebtoken 9.3→10.3, add audit.toml to ignore local crate false positives, fix cache/ollama.rs compile errors
- Update jsonwebtoken from 9.3 to 10.3 in crates/auth/Cargo.toml and crates/contracts/Cargo.toml
- Create .cargo/audit.toml to ignore false positives for local workspace crates 'cache' and 'users'
- Fix pre-existing compile errors in crates/cache/src/ollama.rs (missing reqwest dep, broken format! string literals)
- Add reqwest workspace dependency to crates/cache/Cargo.toml
2026-05-31 18:25:38 +05:30

20 lines
445 B
TOML

[package]
name = "auth"
version = "0.1.0"
edition = "2021"
[dependencies]
jsonwebtoken = "10.3"
argon2 = "0.5"
rand_core = { version = "0.6", features = ["std"] }
serde = { workspace = true }
tracing = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
anyhow = { workspace = true }
axum = { workspace = true }
async-trait = { workspace = true }
db = { path = "../db" }
[dev-dependencies]
tokio = { version = "1" }