- 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
20 lines
517 B
TOML
20 lines
517 B
TOML
[package]
|
|
name = "contracts"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true, features = ["multipart"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
jsonwebtoken = "10.3"
|
|
db = { path = "../db" }
|
|
cache = { path = "../cache" }
|
|
storage = { path = "../storage" }
|
|
bytes.workspace = true
|