async-git 0.0.0-squat-name

Pure-rust async implementation of git built on tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::errors::Result;
use crate::plumbing::Oid;

#[derive(Debug, StructOpt)]
pub struct LogOptions {
    commit: Oid,
}

pub async fn log_cmd(options: LogOptions) -> Result<()> {
    Ok(())
}