From 204db22bbe282611385d0add2f80705479983ad8 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Tue, 3 Feb 2026 11:35:01 +0000 Subject: [PATCH] cob: enable sha1 feature Enable the sha1 feature by default for `radicle-oid`. Without this, the crate cannot be tested in isolation. It results in a compile error, requiring the feature to be enabled. --- crates/radicle-cob/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle-cob/Cargo.toml b/crates/radicle-cob/Cargo.toml index 029a41fc..862d0834 100644 --- a/crates/radicle-cob/Cargo.toml +++ b/crates/radicle-cob/Cargo.toml @@ -28,7 +28,7 @@ nonempty = { workspace = true, features = ["serialize"] } radicle-crypto = { workspace = true, features = ["ssh"] } radicle-dag = { workspace = true } radicle-git-metadata = { workspace = true } -radicle-oid = { workspace = true, features = ["git2", "serde", "std"] } +radicle-oid = { workspace = true, features = ["git2", "serde", "sha1", "std"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } signature = { workspace = true }