[package]
edition = "2021"
rust-version = "1.94.1"
name = "zccache-cli"
version = "1.4.3"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the zccache compiler cache"
homepage = "https://github.com/zackees/zccache"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zackees/zccache"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/zccache-{ version }-{ target }.tar.gz"
bin-dir = "zccache-{ version }-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[features]
default = []
python = ["dep:pyo3"]
[lib]
name = "zccache_cli"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "zccache"
path = "src/main.rs"
[[test]]
name = "daemon_start"
path = "tests/daemon_start.rs"
[[test]]
name = "ino_convert"
path = "tests/ino_convert.rs"
[[test]]
name = "installers"
path = "tests/installers.rs"
[[test]]
name = "kv"
path = "tests/kv.rs"
[[test]]
name = "rust_plan_lifecycle"
path = "tests/rust_plan_lifecycle.rs"
[[test]]
name = "session_end"
path = "tests/session_end.rs"
[dependencies.blake3]
version = "1"
features = ["pure"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.flate2]
version = "1"
[dependencies.pyo3]
version = "0.23"
features = [
"extension-module",
"generate-import-lib",
"abi3-py310",
]
optional = true
[dependencies.rayon]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"rt",
"net",
"io-util",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.zccache-artifact]
version = "=1.4.3"
[dependencies.zccache-compiler]
version = "=1.4.3"
[dependencies.zccache-core]
version = "=1.4.3"
[dependencies.zccache-download]
version = "=1.4.3"
[dependencies.zccache-download-client]
version = "=1.4.3"
[dependencies.zccache-gha]
version = "=1.4.3"
[dependencies.zccache-hash]
version = "=1.4.3"
[dependencies.zccache-ipc]
version = "=1.4.3"
[dependencies.zccache-protocol]
version = "=1.4.3"
[dev-dependencies.zip]
version = "2"
[build-dependencies.pyo3-build-config]
version = "0.23"
[target."cfg(unix)".dependencies.tikv-jemallocator]
version = "0.6"
features = ["unprefixed_malloc_on_supported_platforms"]
[target."cfg(windows)".dependencies.mimalloc]
version = "0.1"