Skip to content

Commit

Permalink
Align indoc and base64 workspace dependencies with root project (#…
Browse files Browse the repository at this point in the history
…9555)

## Summary
After #9524, I noticed two other dependencies were misaligned.
Since the previous PR has been merged, I was thinking I could submit
those two misses.
Of course, open to any comments/decline!
Thanks!! 🙂 

## Test Plan
All units tests are still passing on my side. Let's see with the
pull-request CI again 😄
  • Loading branch information
Coruscant11 authored Dec 1, 2024
1 parent 71df509 commit 99abd68
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/uv-build-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ zip = { workspace = true }
workspace = true

[dev-dependencies]
indoc = { version = "2.0.5" }
indoc = { workspace = true }
insta = { version = "1.40.0", features = ["filters"] }
tempfile = { workspace = true }
2 changes: 1 addition & 1 deletion crates/uv-distribution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ walkdir = { workspace = true }
zip = { workspace = true }

[dev-dependencies]
indoc = { version = "2.0.5" }
indoc = { workspace = true }
insta = { version = "1.40.0", features = ["filters", "json", "redactions"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/uv-install-wheel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ self-replace = { workspace = true }
[dev-dependencies]
anyhow = { version = "1.0.89" }
assert_fs = { version = "1.1.2" }
indoc = { version = "2.0.5" }
indoc = { workspace = true }
2 changes: 1 addition & 1 deletion crates/uv-pep440/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ unscanny = { workspace = true }
version-ranges = { workspace = true, optional = true }

[dev-dependencies]
indoc = { version = "2.0.5" }
indoc = { workspace = true }
tracing = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/uv-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ windows-result = { workspace = true }
[dev-dependencies]
anyhow = { version = "1.0.89" }
assert_fs = { version = "1.1.2" }
indoc = { version = "2.0.5" }
indoc = { workspace = true }
itertools = { version = "0.13.0" }
temp-env = { version = "0.3.6" }
tempfile = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/uv-requirements-txt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ http = ["reqwest", "reqwest-middleware"]
[dev-dependencies]
anyhow = { version = "1.0.89" }
assert_fs = { version = "1.1.2" }
indoc = { version = "2.0.5" }
indoc = { workspace = true }
insta = { version = "1.40.0", features = ["filters"] }
itertools = { version = "0.13.0" }
tempfile = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/uv-settings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ ignored = ["uv-options-metadata", "clap"]

[dev-dependencies]
assert_fs = { version = "1.1.2" }
indoc = { version = "2.0.5" }
indoc = { workspace = true }
4 changes: 2 additions & 2 deletions crates/uv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ zip = { workspace = true }
[dev-dependencies]
assert_cmd = { version = "2.0.16" }
assert_fs = { version = "1.1.2" }
base64 = { version = "0.22.1" }
base64 = { workspace = true }
byteorder = { version = "1.5.0" }
etcetera = { workspace = true }
filetime = { version = "0.2.25" }
flate2 = { workspace = true, default-features = false }
ignore = { version = "0.4.23" }
indoc = { version = "2.0.5" }
indoc = { workspace = true }
insta = { version = "1.40.0", features = ["filters", "json"] }
predicates = { version = "3.1.2" }
regex = { workspace = true }
Expand Down

0 comments on commit 99abd68

Please sign in to comment.