kache 0.26.0

Zero-copy, content-addressed build cache for Rust, C/C++ and more, with S3 and shared-filesystem remotes.
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
"""Entry point for `bench.gate_local`; the package lives in scripts/bench."""

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))

from bench.gate_local import main  # noqa: E402

if __name__ == "__main__":
    raise SystemExit(main())