bazzar/crates/cache-adapter/Cargo.toml

14 lines
329 B
TOML
Raw Normal View History

2023-06-01 10:41:58 +02:00
[package]
name = "cache-adapter"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-06-24 14:54:46 +02:00
async-trait = { workspace = true }
bincode = { workspace = true }
2023-06-03 13:31:57 +02:00
config = { path = "../config" }
2024-06-24 14:54:46 +02:00
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
2023-06-01 10:41:58 +02:00
toml = { version = "0.7.3" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0.1.37" }