mirror of
https://github.com/Traceworks2023/nxtgauge-backend-rust.git
synced 2026-06-11 22:15:25 +00:00
20 lines
559 B
TOML
20 lines
559 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 = { version = "10.3", features = ["rust_crypto"] }
|
|
db = { path = "../db" }
|
|
cache = { path = "../cache" }
|
|
storage = { path = "../storage" }
|
|
bytes.workspace = true
|