Skip to content

Commit

Permalink
cargo upgrade --incompatible (#330)
Browse files Browse the repository at this point in the history
Ran `cargo upgrade --incompatible`, seems there are no changes required.

From cacache 0.12.0:
> BREAKING CHANGE: some signatures for copy have changed, and copy no
longer automatically reflinks

`which` 5.0.0 seems to have only error message changes.
  • Loading branch information
konstin authored Nov 6, 2023
1 parent d99ca31 commit 9b077f3
Show file tree
Hide file tree
Showing 8 changed files with 100 additions and 104 deletions.
136 changes: 66 additions & 70 deletions Cargo.lock

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ license = "MIT OR Apache-2.0"
anyhow = { version = "1.0.75" }
async_http_range_reader = { git = "https://github.com/baszalmstra/async_http_range_reader", ref = "4cafe5afda889d53060e0565c949d4ffd6ef3786" }
async_zip = { version = "0.0.15", features = ["tokio", "deflate"] }
bitflags = { version = "2.4.0" }
cacache = { version = "11.7.1", default-features = false, features = ["tokio-runtime"] }
bitflags = { version = "2.4.1" }
cacache = { version = "12.0.0", default-features = false, features = ["tokio-runtime"] }
camino = { version = "1.1.6", features = ["serde1"] }
clap = { version = "4.4.6" }
clap = { version = "4.4.7" }
colored = { version = "2.0.4" }
configparser = { version = "3.0.2" }
csv = { version = "1.3.0" }
Expand All @@ -29,12 +29,12 @@ dirs = { version = "5.0.1" }
flate2 = { version = "1.0.28" }
fs-err = { version = "2.9.0" }
fs2 = { version = "0.4.3" }
futures = { version = "0.3.28" }
futures = { version = "0.3.29" }
fxhash = { version = "0.2.1" }
glob = { version = "0.3.1" }
goblin = { version = "0.7.1" }
hex = { version = "0.4.3" }
http-cache-reqwest = { version = "0.11.3" }
http-cache-reqwest = { version = "0.12.0" }
indicatif = { version = "0.17.7" }
indoc = { version = "2.0.4" }
itertools = { version = "0.11.0" }
Expand All @@ -43,38 +43,38 @@ miette = { version = "5.10.0" }
once_cell = { version = "1.18.0" }
petgraph = { version = "0.6.4" }
platform-info = { version = "2.0.2" }
plist = { version = "1.5.0" }
plist = { version = "1.6.0" }
pyproject-toml = { version = "0.8.0" }
rand = { version = "0.8.5" }
rayon = { version = "1.8.0" }
reflink-copy = { version = "0.1.10" }
regex = { version = "1.9.6" }
reflink-copy = { version = "0.1.11" }
regex = { version = "1.10.2" }
reqwest = { version = "0.11.22", default-features = false, features = ["json", "gzip", "brotli", "stream", "rustls-tls"] }
reqwest-middleware = { version = "0.2.3" }
reqwest-middleware = { version = "0.2.4" }
reqwest-retry = { version = "0.3.0" }
rfc2047-decoder = { version = "1.0.1" }
seahash = { version = "4.1.0" }
serde = { version = "1.0.188" }
serde_json = { version = "1.0.107" }
serde = { version = "1.0.190" }
serde_json = { version = "1.0.108" }
sha2 = { version = "0.10.8" }
tar = { version = "0.4.40" }
target-lexicon = { version = "0.12.11" }
tempfile = { version = "3.8.0" }
thiserror = { version = "1.0.49" }
tokio = { version = "1.16.1", features = ["rt-multi-thread"] }
tokio-util = { version = "0.7.9", features = ["compat"] }
toml = { version = "0.8.2" }
toml_edit = { version = "0.20.2" }
tracing = { version = "0.1.37" }
target-lexicon = { version = "0.12.12" }
tempfile = { version = "3.8.1" }
thiserror = { version = "1.0.50" }
tokio = { version = "1.33.0", features = ["rt-multi-thread"] }
tokio-util = { version = "0.7.10", features = ["compat"] }
toml = { version = "0.8.6" }
toml_edit = { version = "0.20.7" }
tracing = { version = "0.1.40" }
tracing-indicatif = { version = "0.3.5" }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-tree = { version = "0.2.5" }
unicode-width = { version = "0.1.8" }
unicode-width = { version = "0.1.11" }
unscanny = { version = "0.1.0" }
url = { version = "2.4.1" }
waitmap = { version = "1.1.0" }
walkdir = { version = "2.4.0" }
which = { version = "4.4.2" }
which = { version = "5.0.0" }
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }

[patch.crates-io]
Expand Down
2 changes: 1 addition & 1 deletion crates/install-wheel-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mailparse = { workspace = true }
once_cell = { workspace = true }
platform-info = { workspace = true }
plist = { workspace = true }
pyo3 = { version = "0.19.2", features = ["extension-module", "abi3-py37"], optional = true }
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3-py37"], optional = true }
rayon = { version = "1.8.0", optional = true }
reflink-copy = { workspace = true }
regex = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/pep440-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = { workspace = true, features = ["derive"], optional = true }
tracing = { workspace = true, optional = true }
unicode-width = { workspace = true }

pyo3 = { version = "0.19", optional = true, features = ["extension-module", "abi3-py37"] }
pyo3 = { version = "0.20", optional = true, features = ["extension-module", "abi3-py37"] }

[dev-dependencies]
indoc = "2.0.1"
indoc = "2.0.4"
6 changes: 3 additions & 3 deletions crates/pep508-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ tracing = { workspace = true, features = ["log"] }
unicode-width = { workspace = true }
url = { workspace = true, features = ["serde"] }

pyo3 = { version = "0.19.2", optional = true, features = ["abi3", "extension-module"] }
pyo3-log = { version = "0.8.3", optional = true }
pyo3 = { version = "0.20.0", optional = true, features = ["abi3", "extension-module"] }
pyo3-log = { version = "0.9.0", optional = true }

[dev-dependencies]
indoc = "2.0.4"
log = "0.4.20"
testing_logger = "0.1.1"
serde_json = "1.0.107"
serde_json = "1.0.108"

[features]
pyo3 = ["dep:pyo3", "pep440_rs/pyo3", "pyo3-log"]
Expand Down
2 changes: 1 addition & 1 deletion crates/puffin-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ url = { workspace = true }
which = { workspace = true }

[dev-dependencies]
assert_cmd = { version = "2.0.8" }
assert_cmd = { version = "2.0.12" }
assert_fs = { version = "1.0.13" }
insta-cmd = { version = "0.4.0" }
insta = { version = "1.34.0", features = ["filters"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/puffin-normalize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serde = { workspace = true, features = ["derive"] }

[dev-dependencies]
indoc = { version = "2.0.4" }
insta = { version = "1.33.0" }
serde_json = { version = "1.0.107" }
tempfile = { version = "3.8.0" }
insta = { version = "1.34.0" }
serde_json = { version = "1.0.108" }
tempfile = { version = "3.8.1" }
test-case = { version = "3.2.1" }
6 changes: 3 additions & 3 deletions crates/puffin-package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ unscanny = { workspace = true }

[dev-dependencies]
indoc = { version = "2.0.4" }
insta = { version = "1.33.0" }
serde_json = { version = "1.0.107" }
tempfile = { version = "3.8.0" }
insta = { version = "1.34.0" }
serde_json = { version = "1.0.108" }
tempfile = { version = "3.8.1" }
test-case = { version = "3.2.1" }

0 comments on commit 9b077f3

Please sign in to comment.