Skip to content

Commit

Permalink
Update ruzstd from 0.6 to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jun 1, 2024
1 parent c1c1531 commit f68c2ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ build.allow-build-scripts = [
{ name = "rustix" }, # via tar
{ name = "serde_json" },
{ name = "serde" },
{ name = "syn" }, # 1.0, via ruzstd
{ name = "winapi-i686-pc-windows-gnu" }, # via shared_child via duct & via is_executable
{ name = "winapi-x86_64-pc-windows-gnu" }, # via shared_child via duct & via is_executable
{ name = "winapi" }, # via shared_child via duct & via is_executable
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

- Update `ruzstd` to 0.7.

This increases the rustc version required to build cargo-llvm-cov. (rustc 1.70+ -> 1.73+)
The cargo/rustc version required to run cargo-llvm-cov remains unchanged.

## [0.6.9] - 2024-04-05

- Skip merging profraw data if profraw files don't exist and a profdata file already exists. ([#360](https://github.com/taiki-e/cargo-llvm-cov/pull/360), thanks @weiznich)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cargo-llvm-cov"
version = "0.6.9" #publish:version
edition = "2021"
rust-version = "1.70"
rust-version = "1.73"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/cargo-llvm-cov"
keywords = ["cargo", "coverage", "subcommand", "testing"]
Expand Down Expand Up @@ -33,7 +33,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.6", default-features = false, features = ["std"] }
ruzstd = { version = "0.7", 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ cargo-llvm-cov --json | some-program
cargo +stable install cargo-llvm-cov --locked
```

Currently, installing cargo-llvm-cov requires rustc 1.70+.
Currently, installing cargo-llvm-cov requires rustc 1.73+.

cargo-llvm-cov is usually runnable with Cargo versions older than the Rust version
required for installation (e.g., `cargo +1.60 llvm-cov`). Currently, to run
Expand Down

0 comments on commit f68c2ab

Please sign in to comment.