crypto: Fix scope of `ssh-key` dependency

`radicle-crypto` is the only crate that actually depends on `ssh-key`. I
overlooked that previously and added it as a workspace dependency. Now I
am limiting its scope again.
This commit is contained in:
Lorenz Leutgeb 2025-07-17 10:40:28 +02:00 committed by Fintan Halpenny
parent 0e3f3f03d2
commit 271ef497d7
2 changed files with 1 additions and 2 deletions

View File

@ -59,7 +59,6 @@ shlex = "1.1.0"
signature = "2.2"
snapbox = "0.4.3"
sqlite = "0.32.0"
ssh-key = { version = "0.6.3", default-features = false }
tempfile = "3.3.0"
thiserror = "1.0"
zeroize = "1.5.7"

View File

@ -28,7 +28,7 @@ radicle-ssh = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
signature = { workspace = true }
sqlite = { workspace = true, features = ["bundled"], optional = true }
ssh-key = { workspace = true, features = ["std", "encryption", "getrandom"], optional = true }
ssh-key = { version = "0.6.3", default-features = false, features = ["std", "encryption", "getrandom"], optional = true }
thiserror = { workspace = true }
zeroize = { workspace = true }