Skip to content

Commit 0725292

Browse files
bors[bot]m-ou-se
andauthored
Merge #71
71: Allow nix 0.23. r=eldruin a=m-ou-se This crate compiles fine with nix 0.23 too. This change allows both nix 0.22 and 0.23 as dependency. Co-authored-by: Mara Bos <[email protected]>
2 parents 8aaea2f + 8824fee commit 0725292

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [master] - Unreleased
44

5+
### Changed
6+
7+
- Updated nix to allow both version `0.22` or `0.23`.
8+
59
## [0.6.0] - 2021-09-24
610

711
### Changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async-tokio = ["futures", "tokio", "mio-evented"]
1919

2020
[dependencies]
2121
futures = { version = "0.3", optional = true }
22-
nix = "0.22"
22+
nix = ">= 0.22, < 0.24"
2323
mio = { version = "0.7", optional = true, features = ["os-ext"]}
2424
tokio = { version = "1", optional = true, features = ["net"] }
2525

0 commit comments

Comments
 (0)