liboxen 0.46.7

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

#[derive(Clone, Debug)]
pub struct UploadOpts {
    pub paths: Vec<PathBuf>,
    pub dst: PathBuf,
    pub branch: Option<String>,
    pub message: String,
    pub host: String,
    pub scheme: String,
    pub remote: String,
}