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

@ -4,10 +4,11 @@ version = "0.1.0"
edition = "2018"
[dependencies]
libc = "0.2.136"
libc.workspace = true
anyhow.workspace = true
ffizz-header.workspace = true
taskchampion = { path = "../taskchampion" }
anyhow = "1.0"
ffizz-header = "0.3"
[dev-dependencies]
pretty_assertions = "1"
pretty_assertions.workspace = true