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.
This commit is contained in:
Fintan Halpenny 2026-02-03 11:35:01 +00:00 committed by Lorenz Leutgeb
parent 1cab036c33
commit 204db22bbe
1 changed files with 1 additions and 1 deletions

View File

@ -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 }