feat: using workspace crate deps (#3924)

* chore: workspace deps

* chore: use workspace deps
This commit is contained in:
Nathan.fooo
2023-11-12 21:18:27 +08:00
committed by GitHub
parent 7eb20b232a
commit 50e612511d
40 changed files with 437 additions and 339 deletions

View File

@ -13,14 +13,14 @@ collab-database = { version = "0.1.0" }
collab-plugins = { version = "0.1.0" }
collab-document = { version = "0.1.0" }
collab-entity = { version = "0.1.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
tracing = "0.1"
parking_lot = "0.12.1"
futures = "0.3"
async-trait = "0.1.73"
tokio = {version = "1.26", features = ["sync"]}
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
tracing.workspace = true
parking_lot.workspace = true
futures.workspace = true
async-trait.workspace = true
tokio = { workspace = true, features = ["sync"]}
lib-infra = { path = "../../../shared-lib/lib-infra" }
[features]