Skip to content

Commit

Permalink
Update dependencies (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
xd009642 authored May 31, 2024
1 parent 88d6bc3 commit 2f45bc0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 34 deletions.
37 changes: 7 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ features = ['doc']
crc32fast = { version = "1.2", default-features = false, optional = true }
flate2 = { version = "1", optional = true }
indexmap = { version = "2.0", default-features = false, optional = true }
wasmparser = { version = "0.208.1", default-features = false, optional = true }
wasmparser = { version = "0.209.1", default-features = false, optional = true }
memchr = { version = "2.4.1", default-features = false }
hashbrown = { version = "0.14.0", features = ["ahash"], default-features = false, optional = true }
ruzstd = { version = "0.6.0", optional = true }
ruzstd = { version = "0.7.0", optional = true }

# Internal feature, only used when building as part of libstd, not part of the
# stable interface of this crate.
Expand Down
4 changes: 2 additions & 2 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ fn cmd_msrv() -> Result<(), DynError> {
cargo(&["update", "-p", "ahash", "--precise", "0.8.7"])?;
cmd_with(
"cargo",
&["+1.65.0", "test", "-p", "object", "--features", "read,write,build,std,compression"],
&["+1.65.0", "test", "-p", "object", "--no-default-features", "--features", "read,write,build,std"],
|cmd| {
cmd.env("CARGO_NET_GIT_FETCH_WITH_CLI", "true");
},
)?;
cargo(&["update", "-p", "ahash"])?;
// wasmparser needs 1.76.0
// wasmparser needs 1.76.0 and ruzstd needs 1.73
cmd_with(
"cargo",
&["+1.76.0", "test", "-p", "object", "--features", "all"],
Expand Down

0 comments on commit 2f45bc0

Please sign in to comment.