File tree 3 files changed +548
-11
lines changed
3 files changed +548
-11
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
19
19
([ #1077 ] ( https://github.com/nix-rust/nix/pull/1077 ) )
20
20
- Minimum supported Rust version is now 1.25.0
21
21
([ #1035 ] ( https://github.com/nix-rust/nix/pull/1035 ) )
22
+ - Now functions ` statfs() ` and ` fstatfs() ` return result with ` Statfs ` wrapper
23
+ ([ #928 ] ( https://github.com/nix-rust/nix/pull/928 ) )
22
24
23
25
### Fixed
24
26
### Removed
Original file line number Diff line number Diff line change @@ -71,7 +71,14 @@ pub mod socket;
71
71
72
72
pub mod stat;
73
73
74
- #[ cfg( any( target_os = "android" , target_os = "linux" , target_os = "macos" ) ) ]
74
+ #[ cfg( any( target_os = "android" ,
75
+ target_os = "dragonfly" ,
76
+ target_os = "freebsd" ,
77
+ target_os = "ios" ,
78
+ target_os = "linux" ,
79
+ target_os = "macos" ,
80
+ target_os = "openbsd"
81
+ ) ) ]
75
82
pub mod statfs;
76
83
77
84
pub mod statvfs;
You can’t perform that action at this time.
0 commit comments