lib/cook/src/root.zig
daab053ee43316e1809a84551d573ddd1e5bf3d2
1 //! A persistent, content-addressed cache for derived file trees.
2 const cache = @import("cache.zig");
3
4 pub const Key = cache.Key;
5 pub const Store = cache.Store;
6 pub const Entry = cache.Entry;
7 pub const Limits = cache.Limits;
8 pub const Summary = cache.Summary;
9 pub const digestFile = cache.digestFile;
10 pub const defaultPath = cache.defaultPath;