File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,14 @@ fn main() {
6
6
dragonfly: { target_os = "dragonfly" } ,
7
7
ios: { target_os = "ios" } ,
8
8
freebsd: { target_os = "freebsd" } ,
9
+ fuchsia: { target_os = "fuchsia" } ,
10
+ haiku: { target_os = "haiku" } ,
9
11
illumos: { target_os = "illumos" } ,
10
12
linux: { target_os = "linux" } ,
11
13
macos: { target_os = "macos" } ,
12
14
netbsd: { target_os = "netbsd" } ,
13
15
openbsd: { target_os = "openbsd" } ,
16
+ redox: { target_os = "redox" } ,
14
17
solaris: { target_os = "solaris" } ,
15
18
watchos: { target_os = "watchos" } ,
16
19
tvos: { target_os = "tvos" } ,
Original file line number Diff line number Diff line change 92
92
#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
93
93
#![ deny( clippy:: cast_ptr_alignment) ]
94
94
#![ deny( unsafe_op_in_unsafe_fn) ]
95
+ #![ allow( clippy:: mismatched_target_os) ]
95
96
96
97
// Re-exported external crates
97
98
pub use libc;
You can’t perform that action at this time.
0 commit comments