lago-fs 0.3.0

Filesystem manifest with branching and diffing for the Lago agent runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod branch;
pub mod diff;
pub mod manifest;
pub mod projection;
pub mod snapshot;
pub mod sync;
pub mod tracker;
pub mod tree;
pub use branch::{BranchInfo, BranchManager};
pub use diff::{DiffEntry, diff};
pub use manifest::Manifest;
pub use projection::ManifestProjection;
pub use snapshot::snapshot;
pub use sync::LakeFsSync;
pub use tracker::FsTracker;
pub use tree::{TreeEntry, list_directory, parent_dirs, walk};