liboxen 0.50.6

Oxen is a fast, unstructured data version control, to help version large machine learning datasets written in Rust.
1
2
3
4
5
6
7
8
9
pub mod local;
pub mod s3;
pub mod version_store;

pub use local::LocalVersionStore;
pub use s3::{S3Opts, S3VersionStore};
pub use version_store::{
    LocalFilePath, StorageConfig, StorageKind, VersionLocation, VersionStore, create_version_store,
};