git-lfs-spec 0.1.0

Rust types for Git LFS
Documentation
1
2
3
4
5
6
7
8
9
10
use serde_derive::Deserialize;

use crate::spec::Object;

/// https://github.com/git-lfs/git-lfs/blob/master/docs/api/basic-transfers.md#verification
#[derive(PartialEq, Eq, Debug, Deserialize)]
#[serde(transparent)]
pub struct VerifyRequest {
    pub object: Object,
}