From b49e3c997f617647c361b2893972d124f2bb747b Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 16 Oct 2025 14:53:27 +0200 Subject: [PATCH] Apply cargo sort --- apps/desktop/desktop_native/Cargo.toml | 4 +- .../desktop_native/ssh_agent/Cargo.toml | 72 +++++++++---------- 2 files changed, 37 insertions(+), 39 deletions(-) diff --git a/apps/desktop/desktop_native/Cargo.toml b/apps/desktop/desktop_native/Cargo.toml index f86ad7ec1a5..0fd0447d731 100644 --- a/apps/desktop/desktop_native/Cargo.toml +++ b/apps/desktop/desktop_native/Cargo.toml @@ -8,7 +8,7 @@ members = [ "napi", "proxy", "ssh_agent", - "windows_plugin_authenticator" + "windows_plugin_authenticator", ] [workspace.package] @@ -54,8 +54,8 @@ security-framework = "=3.5.0" security-framework-sys = "=2.15.0" serde = "=1.0.209" serde_json = "=1.0.127" -simplelog = "=0.12.2" sha2 = "=0.10.9" +simplelog = "=0.12.2" ssh-encoding = "=0.2.0" ssh-key = { version = "=0.6.7", default-features = false } sysinfo = "=0.35.0" diff --git a/apps/desktop/desktop_native/ssh_agent/Cargo.toml b/apps/desktop/desktop_native/ssh_agent/Cargo.toml index ad3ce1ec630..23fe6efd0cd 100644 --- a/apps/desktop/desktop_native/ssh_agent/Cargo.toml +++ b/apps/desktop/desktop_native/ssh_agent/Cargo.toml @@ -6,50 +6,48 @@ version = { workspace = true } publish = { workspace = true } [features] -default = [ - "dep:windows", -] +default = ["dep:windows"] manual_test = [] -[dependencies] -anyhow = { workspace = true } -base64 = { workspace = true } -bytes = { workspace = true } -byteorder = { workspace = true } -block-padding = { version = "=0.4.0-rc.4" } -ed25519 = { workspace = true, features = ["pkcs8"] } -ed25519-dalek = { version = "2.2.0", features = ["rand_core"] } -futures = { workspace = true } -inout = { version = "=0.2.0-rc.6" } -homedir = { workspace = true } -log = { workspace = true } -rsa = { version = "=0.10.0-rc.8", features = ["sha2"] } -pin-project = { workspace = true } -sha2 = "0.10.9" -ssh-encoding = "=0.3.0-rc.2" -ssh-key = { version = "=0.7.0-rc.3", features = [ - "encryption", - "ed25519", - "rsa", - "ecdsa", - "getrandom", -] } -num_enum = "0.7.4" -signature = "3.0.0-rc.4" -sysinfo = { workspace = true, features = ["windows"] } -tracing-subscriber.workspace = true -tracing = { workspace = true } -p256 = "0.13.2" -p384 = "0.13.1" -p521 = "0.13.3" -tokio = { workspace = true, features = ["io-util", "sync", "macros", "net"] } -tokio-util = { workspace = true, features = ["codec"] } - [target.'cfg(windows)'.dependencies] windows = { workspace = true, features = [ "Win32_System_Pipes", ], optional = true } windows-future = { workspace = true } +[dependencies] +anyhow = { workspace = true } +base64 = { workspace = true } +block-padding = { version = "=0.4.0-rc.4" } +byteorder = { workspace = true } +bytes = { workspace = true } +ed25519 = { workspace = true, features = ["pkcs8"] } +ed25519-dalek = { version = "2.2.0", features = ["rand_core"] } +futures = { workspace = true } +homedir = { workspace = true } +inout = { version = "=0.2.0-rc.6" } +log = { workspace = true } +num_enum = "0.7.4" +p256 = "0.13.2" +p384 = "0.13.1" +p521 = "0.13.3" +pin-project = { workspace = true } +rsa = { version = "=0.10.0-rc.8", features = ["sha2"] } +sha2 = "0.10.9" +signature = "3.0.0-rc.4" +ssh-encoding = "=0.3.0-rc.2" +ssh-key = { version = "=0.7.0-rc.3", features = [ + "encryption", + "ed25519", + "rsa", + "ecdsa", + "getrandom", +] } +sysinfo = { workspace = true, features = ["windows"] } +tokio = { workspace = true, features = ["io-util", "sync", "macros", "net"] } +tokio-util = { workspace = true, features = ["codec"] } +tracing = { workspace = true } +tracing-subscriber.workspace = true + [lints] workspace = true