[package]
edition = "2021"
name = "crush-core"
version = "0.2.1"
authors = ["Crush Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance parallel compression library core"
homepage = "https://github.com/john-agentic-ai-tools/crush"
readme = "README.md"
license = "MIT"
repository = "https://github.com/john-agentic-ai-tools/crush"
[lib]
name = "crush_core"
path = "src/lib.rs"
[[test]]
name = "cancel_integration"
path = "tests/cancel_integration.rs"
[[test]]
name = "cancel_unit"
path = "tests/cancel_unit.rs"
[[test]]
name = "inspection"
path = "tests/inspection.rs"
[[test]]
name = "plugin_discovery"
path = "tests/plugin_discovery.rs"
[[test]]
name = "plugin_selection"
path = "tests/plugin_selection.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "timeout"
path = "tests/timeout.rs"
[[bench]]
name = "compression"
path = "benches/compression.rs"
harness = false
[[bench]]
name = "plugin_discovery"
path = "benches/plugin_discovery.rs"
harness = false
[[bench]]
name = "plugin_selection"
path = "benches/plugin_selection.rs"
harness = false
[dependencies.crc32fast]
version = "1.4"
[dependencies.crossbeam]
version = "0.8"
[dependencies.ctrlc]
version = "3.4"
[dependencies.flate2]
version = "1.1"
features = ["zlib"]
[dependencies.linkme]
version = "0.3"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.8"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.proptest]
version = "1.5"
[lints.clippy]
all = "deny"
expect_used = "deny"
panic = "deny"
panic_in_result_fn = "deny"
pedantic = "warn"
unwrap_used = "deny"