liboxen 0.9.4-beta3

Oxen is a fast, unstructured data version control, to help version datasets, written in Rust.
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

#[derive(Clone, Debug)]
pub struct InfoOpts {
    pub path: PathBuf,
    pub revision: Option<String>, // commit id or branch
    pub verbose: bool,
    pub output_as_json: bool,
}