diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/mount.rs | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e163be9..bad50adc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Added TIMESTAMPNS support for linux (#[1402](https://github.com/nix-rust/nix/pull/1402)) - Added `sendfile64` (#[1439](https://github.com/nix-rust/nix/pull/1439)) +- Added `MS_LAZYTIME` to `MsFlags` + (#[1437](https://github.com/nix-rust/nix/pull/1437)) ### Changed - Made `forkpty` unsafe, like `fork` @@ -32,7 +32,7 @@ targets = [ ] [dependencies] -libc = { version = "0.2.93", features = [ "extra_traits" ] } +libc = { version = "0.2.95", features = [ "extra_traits" ] } bitflags = "1.1" cfg-if = "1.0" diff --git a/src/mount.rs b/src/mount.rs index 2c54761e..edb8afbd 100644 --- a/src/mount.rs +++ b/src/mount.rs @@ -38,6 +38,7 @@ libc_bitflags!( MS_KERNMOUNT; MS_I_VERSION; MS_STRICTATIME; + MS_LAZYTIME; MS_ACTIVE; MS_NOUSER; MS_RMT_MASK; |