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 33240a0 commit 1d545dd
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.1.25] - 2024-02-10

- Update `toml_edit` to 0.22.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pkg-fmt = "tgz"

[dependencies]
anyhow = "1.0.47"
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"
semver = "1"
Expand Down

0 comments on commit 1d545dd

Please sign in to comment.