Harness the power of signify(1) to sign arbitrary git objects
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable parsing v0 version blobs

-1
-1
src/utils.rs
··· 90 90 /// Parse a [`TreeSignatureVersion`] from a git [`Blob`]. 91 91 pub fn from_blob(blob: Blob<'_>) -> Result<Self> { 92 92 match blob.content() { 93 - b"v0" => Ok(Self::V0), 94 93 b"v1" => Ok(Self::V1), 95 94 b"v2" => Ok(Self::V2), 96 95 blob => Err(anyhow!(