From 9e91f0476b6de0d42bdd98d80a23bc6a7b929e2e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 10:47:08 +0000 Subject: [PATCH] fix(deps): update cargo dependencies (minor) --- crates/e2e-tests/Cargo.toml | 4 ++-- crates/tokf-cli/Cargo.toml | 10 +++++----- crates/tokf-common/Cargo.toml | 2 +- crates/tokf-server/Cargo.toml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/crates/e2e-tests/Cargo.toml b/crates/e2e-tests/Cargo.toml index 5573dce0..c5cc8436 100644 --- a/crates/e2e-tests/Cargo.toml +++ b/crates/e2e-tests/Cargo.toml @@ -13,7 +13,7 @@ tokf = { path = "../tokf-cli" } tokf-server = { path = "../tokf-server", features = ["test-helpers"] } tokf-common = { path = "../tokf-common" } crdb-test-macro = { path = "../crdb-test-macro" } -sqlx = { version = "=0.8.6", default-features = false, features = ["postgres", "runtime-tokio-rustls"] } +sqlx = { version = "=0.9.0", default-features = false, features = ["postgres", "runtime-tokio-rustls"] } tokio = { version = "1", features = ["full", "test-util"] } reqwest = { version = "0.13", default-features = false, features = ["rustls", "json", "blocking"] } tempfile = "3" @@ -21,7 +21,7 @@ anyhow = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" uuid = { version = "1", features = ["v4"] } -rusqlite = { version = "0.32", features = ["bundled"] } +rusqlite = { version = "0.40", features = ["bundled"] } axum = "0.8" [lints] diff --git a/crates/tokf-cli/Cargo.toml b/crates/tokf-cli/Cargo.toml index 86988245..95d16712 100644 --- a/crates/tokf-cli/Cargo.toml +++ b/crates/tokf-cli/Cargo.toml @@ -28,7 +28,7 @@ include_dir = { version = "0.7", features = ["glob"] } # Pinned to 0.32.x: uses libsqlite3-sys ^0.30.1, same as sqlx-sqlite in tokf-server. # Upgrading rusqlite past 0.32.x would require a newer libsqlite3-sys that conflicts # with sqlx-sqlite's links = "sqlite3" constraint in the workspace resolver. -rusqlite = { version = "0.32", features = ["bundled"] } +rusqlite = { version = "0.40", features = ["bundled"] } rkyv = { version = "0.8", features = ["bytecheck", "unaligned"] } reqwest = { version = "0.13", default-features = false, features = ["rustls", "json", "blocking", "multipart", "query"] } # linux-native uses kernel keyutils (no libdbus-sys dependency). @@ -41,11 +41,11 @@ clap_complete = "4.5" clap_complete_nushell = "4.5" dialoguer = { version = "0.12", default-features = false } which = "8" -rable = "0.1.15" +rable = "0.2.0" tempfile = "3" -opentelemetry = { version = "0.31", optional = true, features = ["metrics"] } -opentelemetry_sdk = { version = "0.31", optional = true, features = ["metrics"] } -opentelemetry-otlp = { version = "0.31", optional = true } +opentelemetry = { version = "0.32", optional = true, features = ["metrics"] } +opentelemetry_sdk = { version = "0.32", optional = true, features = ["metrics"] } +opentelemetry-otlp = { version = "0.32", optional = true } tokio = { version = "1", optional = true, features = ["rt-multi-thread"] } tonic = { version = "0.14", optional = true, default-features = false } diff --git a/crates/tokf-common/Cargo.toml b/crates/tokf-common/Cargo.toml index 7cacf1bf..9739b19e 100644 --- a/crates/tokf-common/Cargo.toml +++ b/crates/tokf-common/Cargo.toml @@ -12,7 +12,7 @@ categories = ["command-line-utilities", "development-tools"] [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" toml = { version = "1.0", optional = true } regex = { version = "1", optional = true } unicode-normalization = "0.1" diff --git a/crates/tokf-server/Cargo.toml b/crates/tokf-server/Cargo.toml index 92954092..c79f20a9 100644 --- a/crates/tokf-server/Cargo.toml +++ b/crates/tokf-server/Cargo.toml @@ -24,11 +24,11 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = "1" clap = { version = "4", features = ["derive"] } -sqlx = { version = "=0.8.6", default-features = false, features = ["postgres", "runtime-tokio-rustls", "uuid", "chrono", "macros", "migrate"] } +sqlx = { version = "=0.9.0", default-features = false, features = ["postgres", "runtime-tokio-rustls", "uuid", "chrono", "macros", "migrate"] } uuid = { version = "1", features = ["v4", "serde"] } reqwest = { version = "0.13", default-features = false, features = ["rustls", "json", "form"] } -sha2 = "0.10" -rand = "0.9" +sha2 = "0.11" +rand = "0.10" hex = "0.4" async-trait = "0.1" chrono = { version = "0.4", features = ["serde"] }