mirror of https://github.com/buster-so/buster.git
24 lines
504 B
TOML
24 lines
504 B
TOML
[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 }
|
|
thiserror = { workspace = true }
|
|
|
|
database = { path = "../database" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
|
|
[features]
|
|
default = [] |