Skip to content

Commit

Permalink
Pin ctrlc to fix build error on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Mar 10, 2024
1 parent 7692987 commit 4d5c4ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ updates:
interval: daily
commit-message:
prefix: ''
ignore:
- dependency-name: ctrlc # https://github.com/Detegr/rust-ctrlc/pull/116
labels: []
- package-ecosystem: github-actions
directory: /
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

- Pin `ctrlc` to fix [build error on macOS](https://github.com/Detegr/rust-ctrlc/pull/116).

## [0.6.21] - 2024-03-06

- Support combining `--ignore-unknown-features` and `--group-features`. ([#240](https://github.com/taiki-e/cargo-hack/pull/240), thanks @kornelski)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pkg-fmt = "tgz"
[dependencies]
anyhow = "1.0.47"
cargo-config2 = "0.1.13"
ctrlc = { version = "3.1.4", features = ["termination"] }
ctrlc = { version = "=3.4.2", features = ["termination"] } # https://github.com/Detegr/rust-ctrlc/pull/116
lexopt = "0.3"
same-file = "1.0.1"
serde_json = "1"
Expand Down

0 comments on commit 4d5c4ee

Please sign in to comment.