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 }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
diesel = { workspace = true }
|
|
|
|
diesel-async = { workspace = true }
|
|
|
|
|
2025-03-12 05:09:19 +08:00
|
|
|
database = { path = "../database" }
|
|
|
|
|
2025-03-06 08:52:08 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = { workspace = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|