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

@ -8,20 +8,20 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
uuid = { version = "^1.3.0", features = ["serde", "v4"] }
actix-web = "^4.3.1"
anyhow = "1.0"
thiserror = "1.0"
futures = "^0.3.25"
serde = "^1.0.147"
serde_json = "^1.0"
clap = { version = "^4.3.0", features = ["string"] }
log = "^0.4.17"
env_logger = "^0.10.0"
rusqlite = { version = "0.29", features = ["bundled"] }
chrono = { version = "^0.4.22", features = ["serde"] }
uuid.workspace = true
actix-web.workspace = true
anyhow.workspace = true
thiserror.workspace = true
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
clap.workspace = true
log.workspace = true
env_logger.workspace = true
rusqlite.workspace = true
chrono.workspace = true
[dev-dependencies]
actix-rt = "2"
tempfile = "3"
pretty_assertions = "1"
actix-rt.workspace = true
tempfile.workspace = true
pretty_assertions.workspace = true