Skip to content

Commit

Permalink
Update ruzstd from 0.7 to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 24, 2024
1 parent 0263d8b commit f64f480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ lexopt = "0.3"
opener = { version = "0.7", default-features = false }
regex = { version = "1.3", default-features = false, features = ["perf", "std"] }
rustc-demangle = { version = "0.1.23", features = ["std"] }
ruzstd = { version = "0.7", default-features = false, features = ["std"] }
ruzstd = { version = "0.8", default-features = false, features = ["std"] }
serde = "1.0.103"
serde_derive = "1.0.103"
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ fn object_files(cx: &Context) -> Result<Vec<OsString>> {
}
target_dir.push("target");
let archive_file = cx.args.nextest_archive_file.as_ref().unwrap();
let decoder = ruzstd::StreamingDecoder::new(fs::File::open(archive_file)?)?;
let decoder = ruzstd::decoding::StreamingDecoder::new(fs::File::open(archive_file)?)?;
let mut archive = Archive::new(decoder);
let mut binaries_metadata = vec![];
for entry in archive.entries()? {
Expand Down

0 comments on commit f64f480

Please sign in to comment.