Add Context to Rust service

This commit is contained in:
Fabian Stamm
2025-05-28 15:54:53 +02:00
parent f4b32f650c
commit bfb8c076be
3 changed files with 46 additions and 34 deletions

View File

@ -6,10 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
int-enum = { version = "0.5.0", features = ["serde", "convert"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.88"
nanoid = "0.4.0"
tokio = { version = "1.22.0", features = ["full"] }
log = "0.4.17"
async-trait = "0.1.59"
int-enum = { version = "0.5", features = ["serde", "convert"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
nanoid = "0.4"
tokio = { version = "1", features = ["full"] }
log = "0.4"
async-trait = "0.1"