use workspace dependencies for workspace crates

This commit is contained in:
Sebastian Thiel 2024-04-10 13:06:49 +02:00
parent 7d4aede13e
commit 4542c73fdb
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B
3 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ tokio = { version = "1.37.0" }
gitbutler-git = { path = "crates/gitbutler-git" }
gitbutler-core = { path = "crates/gitbutler-core" }
gitbutler-testsupport = { path = "crates/gitbutler-testsupport" }
[profile.release]
codegen-units = 1 # Compile crates one after another so the compiler can optimize better

View File

@ -8,7 +8,7 @@ publish = false
[dev-dependencies]
once_cell = "1.19"
pretty_assertions = "1.4"
gitbutler-testsupport = { path = "../gitbutler-testsupport" }
gitbutler-testsupport.workspace = true
[dependencies]
toml = "0.8.12"

View File

@ -20,7 +20,7 @@ tauri-build = { version = "1.5", features = [] }
#once_cell = "1.19"
pretty_assertions = "1.4"
tempfile = "3.10"
gitbutler-testsupport = { path = "../gitbutler-testsupport" }
gitbutler-testsupport.workspace = true
[dependencies]
anyhow = "1.0.81"