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 @@ -49,6 +49,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
4949
5050### Removed
5151
52+ - Removed a couple of termios constants on redox that were never actually
53+ supported.
54+ (#[ 1483] ( https://github.com/nix-rust/nix/pull/1483 ) )
55+
5256## [ 0.22.0] - 9 July 2021
5357### Added
5458- Added ` if_nameindex ` (#[ 1445] ( https://github.com/nix-rust/nix/pull/1445 ) )
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ targets = [
2525]
2626
2727[dependencies ]
28- libc = { git = " https://github.com/rust-lang/libc" , rev = " 9c1489fa8 " , features = [ " extra_traits" ] }
28+ libc = { git = " https://github.com/rust-lang/libc" , rev = " f5e31f208 " , features = [ " extra_traits" ] }
2929bitflags = " 1.1"
3030cfg-if = " 1.0"
3131
Original file line number Diff line number Diff line change @@ -604,7 +604,9 @@ libc_bitflags! {
604604 ICRNL ;
605605 IXON ;
606606 IXOFF ;
607+ #[ cfg( not( target_os = "redox" ) ) ]
607608 IXANY ;
609+ #[ cfg( not( target_os = "redox" ) ) ]
608610 IMAXBEL ;
609611 #[ cfg( any( target_os = "android" , target_os = "linux" , target_os = "macos" ) ) ]
610612 IUTF8 ;
You can’t perform that action at this time.
0 commit comments