File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
13
13
14
14
### Removed
15
15
16
+ - Removed a couple of termios constants on redox that were never actually
17
+ supported.
18
+ (#[ 1483] ( https://github.com/nix-rust/nix/pull/1483 ) )
19
+
16
20
## [ 0.20.0] - 20 February 2021
17
21
### Added
18
22
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ targets = [
31
31
]
32
32
33
33
[dependencies ]
34
- libc = { version = " 0.2.82 " , features = [ " extra_traits" ] }
34
+ libc = { version = " 0.2.99 " , features = [ " extra_traits" ] }
35
35
bitflags = " >= 1.1.0, < 1.3.0"
36
36
cfg-if = " 1.0"
37
37
Original file line number Diff line number Diff line change @@ -569,7 +569,9 @@ libc_bitflags! {
569
569
ICRNL ;
570
570
IXON ;
571
571
IXOFF ;
572
+ #[ cfg( not( target_os = "redox" ) ) ]
572
573
IXANY ;
574
+ #[ cfg( not( target_os = "redox" ) ) ]
573
575
IMAXBEL ;
574
576
#[ cfg( any( target_os = "android" , target_os = "linux" , target_os = "macos" ) ) ]
575
577
IUTF8 ;
You can’t perform that action at this time.
0 commit comments