Skip to content

Commit 3ba12f4

Browse files
committed
improve(deps): axum 0.7 → 0.8, rand 0.8 → 0.9
1 parent 5086be8 commit 3ba12f4

File tree

4 files changed

+17
-90
lines changed

4 files changed

+17
-90
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bytes = "1"
7575

7676
# Random
7777
getrandom = "0.2"
78-
rand = "0.8"
78+
rand = "0.9"
7979

8080
# Derive macros (optional)
8181
inferadb-derive = { version = "0.1", path = "inferadb-derive", optional = true }

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ inferadb = { path = "..", features = ["rest"] }
2828
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
2929

3030
# Web framework for axum example
31-
axum = "0.7"
31+
axum = "0.8"

tests/integration/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static API_BASE_URL: OnceLock<String> = OnceLock::new();
2323
/// Generate a random Ed25519 signing key
2424
#[allow(dead_code)]
2525
pub fn generate_signing_key() -> SigningKey {
26-
let mut rng = rand::thread_rng();
26+
let mut rng = rand::rng();
2727
let mut bytes = [0u8; 32];
2828
rng.fill_bytes(&mut bytes);
2929
SigningKey::from_bytes(&bytes)

0 commit comments

Comments
 (0)