Skip to content

Commit

Permalink
build-sys: Move a few dev-deps to workspace deps
Browse files Browse the repository at this point in the history
Just to increase sharing.
  • Loading branch information
cgwalters committed Aug 15, 2024
1 parent 257c860 commit c5d0d9b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ camino = "1.1.6"
cap-std-ext = "4.0.2"
chrono = { version = "0.4.38", default-features = false }
clap = "4.5.4"
indoc = "2.0.5"
fn-error-context = "0.2.1"
libc = "0.2.154"
serde = "1.0.199"
serde_json = "1.0.116"
similar-asserts = "1.5.0"
static_assertions = "1.1.0"
tempfile = "3.10.1"
tracing = "0.1.40"
tokio = ">= 1.37.0"
Expand Down
6 changes: 3 additions & 3 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ uuid = { version = "1.8.0", features = ["v4"] }
tini = "1.3.0"

[dev-dependencies]
indoc = "2.0.5"
similar-asserts = { version = "1.5.0" }
static_assertions = "1.1.0"
indoc = { workspace = true }
similar-asserts = { workspace = true }
static_assertions = { workspace = true }

[features]
default = ["install"]
Expand Down
2 changes: 1 addition & 1 deletion tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ camino = { workspace = true }
cap-std-ext = { workspace = true }
clap = { workspace = true, features = ["derive","cargo"] }
fn-error-context = { workspace = true }
indoc = "2.0.5"
indoc = { workspace = true }
libtest-mimic = "0.7.3"
oci-spec = "0.6.5"
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process"] }
Expand Down
4 changes: 2 additions & 2 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ tracing = { workspace = true }
tokio = { workspace = true, features = ["process"] }

[dev-dependencies]
similar-asserts = { version = "1.5.0" }
static_assertions = "1.1.0"
similar-asserts = { workspace = true }
static_assertions = { workspace = true }

[lints]
workspace = true

0 comments on commit c5d0d9b

Please sign in to comment.