Skip to main content

zccache/
lib.rs

1//! `zccache` — transitional absorber crate. See README and issue #365.
2//!
3//! Each `pub mod` below corresponds to a former workspace crate of the same
4//! name (`zccache-core` → [`core`], `zccache-hash` → [`hash`], etc.). New code
5//! should `use crate::<module>::*` instead of the legacy
6//! `zccache_<module>::*` paths, which are being deleted wave by wave.
7
8pub mod artifact;
9pub mod ci;
10pub mod cli;
11pub mod compiler;
12pub mod core;
13pub mod daemon;
14pub mod depgraph;
15pub mod download;
16pub mod download_client;
17pub mod download_daemon;
18pub mod download_protocol;
19pub mod fingerprint;
20pub mod fscache;
21pub mod gha;
22pub mod hash;
23pub mod ipc;
24pub mod protocol;
25pub mod symbols;
26pub mod watcher;
27
28#[cfg(feature = "test-support")]
29pub mod test_support;