buster/api/libs/sharing/Cargo.toml

27 lines
582 B
TOML
Raw Normal View History

2025-03-06 08:52:08 +08:00
[package]
name = "sharing"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { workspace = true }
chrono = { workspace = true }
serde = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
diesel = { workspace = true }
diesel-async = { workspace = true }
2025-03-19 23:41:29 +08:00
thiserror = { workspace = true }
2025-03-06 08:52:08 +08:00
2025-03-12 05:09:19 +08:00
database = { path = "../database" }
middleware = { path = "../middleware" }
2025-03-12 05:09:19 +08:00
2025-03-06 08:52:08 +08:00
[dev-dependencies]
tokio-test = { workspace = true }
2025-03-19 23:41:29 +08:00
mockito = { workspace = true }
2025-03-22 05:20:16 +08:00
mockall = "0.11.4"
async-trait = "0.1.74"
2025-03-06 08:52:08 +08:00
[features]
2025-03-19 23:41:29 +08:00
default = []