Put Rust deps at the root of the workspace

This allows us to be consistent about the required versions for each of
the member packages.

Fixes #3088.
This commit is contained in:
Dustin J. Mitchell 2023-05-28 23:20:22 +00:00 committed by Dustin J. Mitchell
parent 7a310fbfc1
commit 48543b7fcb
6 changed files with 80 additions and 47 deletions

View file

@ -12,14 +12,14 @@ taskchampion-lib = { path = "../lib" }
taskchampion-sync-server = { path = "../sync-server" }
[dev-dependencies]
anyhow = "1.0"
actix-web = "^4.3.1"
actix-rt = "2"
tempfile = "3"
pretty_assertions = "1"
log = "^0.4.17"
env_logger = "^0.10.0"
lazy_static = "1"
anyhow.workspace = true
actix-web.workspace = true
actix-rt.workspace = true
tempfile.workspace = true
pretty_assertions.workspace = true
log.workspace = true
env_logger.workspace = true
lazy_static.workspace = true
[build-dependencies]
cc = "1.0.73"
cc.workspace = true