Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
crypto: Fix scope of `ssh-key` dependency
✗ CI failure Lorenz Leutgeb committed 10 months ago
commit 917f5b75a3214f15558ab169798a997275391570
parent 010d5134e8fae35e9e4f179d2929e41a20a93d30
1 failed (1 total) View logs
2 files changed +1 -2
modified Cargo.toml
@@ -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"
modified crates/radicle-crypto/Cargo.toml
@@ -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 }