From bcb1789cda74001bd448f939d80dacba9566a8ac Mon Sep 17 00:00:00 2001 From: Isaiah Inuwa Date: Thu, 18 Dec 2025 11:20:32 -0600 Subject: [PATCH] Pin ciborium version --- apps/desktop/desktop_native/Cargo.toml | 1 + apps/desktop/desktop_native/win_webauthn/Cargo.toml | 2 +- .../desktop_native/windows_plugin_authenticator/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/desktop/desktop_native/Cargo.toml b/apps/desktop/desktop_native/Cargo.toml index 4d2e0b624be..2773fa5f801 100644 --- a/apps/desktop/desktop_native/Cargo.toml +++ b/apps/desktop/desktop_native/Cargo.toml @@ -31,6 +31,7 @@ byteorder = "=1.5.0" bytes = "=1.11.0" cbc = "=0.1.2" chacha20poly1305 = "=0.10.1" +ciborium = "=0.2.2" core-foundation = "=0.10.1" ctor = "=0.5.0" dirs = "=6.0.0" diff --git a/apps/desktop/desktop_native/win_webauthn/Cargo.toml b/apps/desktop/desktop_native/win_webauthn/Cargo.toml index 41abe582e0c..81361617827 100644 --- a/apps/desktop/desktop_native/win_webauthn/Cargo.toml +++ b/apps/desktop/desktop_native/win_webauthn/Cargo.toml @@ -13,7 +13,7 @@ workspace = true [target.'cfg(windows)'.dependencies] base64 = { workspace = true } -ciborium = "0.2" +ciborium = { workspace = true } tracing = { workspace = true } windows = { workspace = true, features = [ "Win32_Foundation", diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/Cargo.toml b/apps/desktop/desktop_native/windows_plugin_authenticator/Cargo.toml index b13c12d6572..7bb1a7a9b4b 100644 --- a/apps/desktop/desktop_native/windows_plugin_authenticator/Cargo.toml +++ b/apps/desktop/desktop_native/windows_plugin_authenticator/Cargo.toml @@ -6,6 +6,7 @@ license = { workspace = true } publish = { workspace = true } [target.'cfg(windows)'.dependencies] +ciborium = { workspace = true } desktop_core = { path = "../core" } futures = { workspace = true } windows = { workspace = true, features = [ @@ -22,7 +23,6 @@ serde = { workspace = true, features = ["derive"] } tracing = { workspace = true } tracing-appender = "0.2.4" tracing-subscriber = { workspace = true } -ciborium = "0.2" tokio = { workspace = true } base64 = { workspace = true } win_webauthn = { path = "../win_webauthn" }