Skip to content

Commit 0de61e2

Browse files
authored
Merge pull request #1024 from mulkieran/rand-0.10.0
Increase rand dependency lower bound to 0.10.0
2 parents 1cf3f36 + e652947 commit 0de61e2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version = "1.85.0" # LOWEST SUPPORTED RUST TOOLCHAIN
1414
exclude = [".clippy.toml", ".githooks/*", ".gitignore", ".github/*", "Makefile"]
1515

1616
[dependencies.bitflags]
17-
version = "2.3.3"
17+
version = "2.4.1"
1818

1919
[dependencies.cfg-if]
2020
version = "1.0.0"
@@ -27,15 +27,15 @@ path = "./devicemapper-rs-sys"
2727
version="0.11.0"
2828

2929
[dependencies.log]
30-
version = "0.4.14"
30+
version = "0.4.17"
3131

3232
[dependencies.nix]
3333
version = "0.31.1"
3434
features=["fs", "ioctl", "mount"]
3535

3636
#[cfg(not(target_os = "android"))]
3737
[dependencies.rand]
38-
version = "0.9.0"
38+
version = "0.10.0"
3939

4040
[dependencies.retry]
4141
version = "2.0.0"
@@ -45,7 +45,7 @@ default-features=false
4545
version = "1.0.0"
4646

4747
[dependencies.serde]
48-
version = "1.0.60"
48+
version = "1.0.166"
4949

5050
[build-dependencies.devicemapper-sys]
5151
version = "0.3.0"

src/core/dm_udev_sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub mod sync_semaphore {
3535

3636
use nix::unistd::{access, AccessFlags};
3737

38-
use rand::Rng;
38+
use rand::RngExt;
3939
use retry::{delay::NoDelay, retry, OperationResult};
4040
use std::{io, path::Path, sync::LazyLock};
4141

0 commit comments

Comments
 (0)