Skip to content

Commit 6caee75

Browse files
committed
chore: update rand to 0.10
1 parent f881f52 commit 6caee75

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/nanocld/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ nanocl_utils = { version = "0.8", features = ["unix", "ntex", "logger"] }
8686
utoipa = { version = "5", features = ["yaml"], optional = true }
8787
notify = "8.0"
8888
ntex-cors = "3"
89-
rand = "0.9"
89+
rand = "0.10"
9090
openssl = { version = "0.10" }
9191
ipnet = { version = "2.10.0", features = ["serde"] }
9292
num_cpus = "1.16.0"

bin/nanocld/src/utils/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// or on the key of the parent for relational purpose.
44
/// For example if we create a cargo `get-started` in the default namespace `global`
55
/// The cargo key will be `get-started.global`
6-
use rand::{Rng, distr::Alphanumeric, rng};
6+
use rand::{RngExt, distr::Alphanumeric, rng};
77

88
use nanocl_error::{
99
http::{HttpError, HttpResult},

0 commit comments

Comments
 (0)