liboxen 0.51.1

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
10
pub mod local;
pub mod s3;
pub mod version_store;

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