File tree 4 files changed +12
-9
lines changed
4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 15
15
image : freebsd-11-4-release-amd64
16
16
setup_script :
17
17
- fetch https://sh.rustup.rs -o rustup.sh
18
- - sh rustup.sh -y --profile=minimal --default-toolchain 1.41 .0
18
+ - sh rustup.sh -y --profile=minimal --default-toolchain 1.46 .0
19
19
- $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
20
20
amd64_test_script :
21
21
- . $HOME/.cargo/env
46
46
image : catalina-xcode
47
47
setup_script :
48
48
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
49
- - sh rustup.sh -y --profile=minimal --default-toolchain 1.41 .0
49
+ - sh rustup.sh -y --profile=minimal --default-toolchain 1.46 .0
50
50
- . $HOME/.cargo/env
51
51
- bash ci/install.sh
52
52
script :
@@ -101,7 +101,7 @@ task:
101
101
setup_script :
102
102
- mkdir /tmp/home
103
103
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
104
- - sh rustup.sh -y --profile=minimal --default-toolchain 1.41 .0
104
+ - sh rustup.sh -y --profile=minimal --default-toolchain 1.46 .0
105
105
- . $HOME/.cargo/env
106
106
- bash ci/install.sh
107
107
script :
@@ -119,13 +119,13 @@ task:
119
119
- name : Linux x86_64
120
120
env :
121
121
TARGET : x86_64-unknown-linux-gnu
122
- TOOLCHAIN : 1.41 .0
122
+ TOOLCHAIN : 1.46 .0
123
123
- name : Linux x86_64 musl
124
124
env :
125
125
TARGET : x86_64-unknown-linux-musl
126
- TOOLCHAIN : 1.41 .0
126
+ TOOLCHAIN : 1.46 .0
127
127
container :
128
- image : rust:1.41
128
+ image : rust:1.46
129
129
setup_script :
130
130
- rustup toolchain install $TOOLCHAIN
131
131
- rustup target add --toolchain $TOOLCHAIN $TARGET
@@ -173,7 +173,7 @@ task:
173
173
env :
174
174
TARGET : x86_64-fuchsia
175
175
container :
176
- image : rust:1.41
176
+ image : rust:1.46
177
177
setup_script :
178
178
- rustup target add $TARGET
179
179
script :
Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
50
50
where it previously would've had undefined behavior.
51
51
(#[ 1484] ( https://github.com/nix-rust/nix/pull/1484 ) )
52
52
53
+ - Minimum supported Rust version is now 1.46.0.
54
+ ([ #1492 ] ( https://github.com/nix-rust/nix/pull/1492 ) )
55
+
53
56
### Fixed
54
57
55
58
- Added more errno definitions for better backwards compatibility with
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ targets = [
26
26
27
27
[dependencies ]
28
28
libc = { git = " https://github.com/rust-lang/libc" , rev = " f5e31f208" , features = [ " extra_traits" ] }
29
- bitflags = " 1.1"
29
+ bitflags = " 1.3. 1"
30
30
cfg-if = " 1.0"
31
31
32
32
[target .'cfg(not(target_os = "redox"))' .dependencies ]
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Tier 3:
87
87
88
88
## Usage
89
89
90
- ` nix ` requires Rust 1.41 .0 or newer.
90
+ ` nix ` requires Rust 1.46 .0 or newer.
91
91
92
92
To use ` nix ` , add this to your ` Cargo.toml ` :
93
93
You can’t perform that action at this time.
0 commit comments