[[bin]]
name = "bru"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
features = ["derive", "cargo"]
version = "4"
[dependencies.clap_complete]
version = "4"
[dependencies.colored]
version = "2"
[dependencies.flate2]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.moka]
features = ["future"]
version = "0.12"
[dependencies.rayon]
version = "1"
[dependencies.reqwest]
features = ["json"]
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.term_size]
version = "0.3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
features = ["full"]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.23"
[package]
authors = ["Nick <nijaru@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "Fast, parallel package manager compatible with Homebrew formulae"
documentation = "https://github.com/nijaru/kombrucha#readme"
edition = "2024"
exclude = ["ai/*", "docs/*", "benchmarks/*", ".github/*", "scripts/*"]
homepage = "https://github.com/nijaru/kombrucha"
keywords = ["homebrew", "package-manager", "cli", "macos", "bottles"]
license = "MIT OR Apache-2.0"
name = "kombrucha"
readme = "README.md"
repository = "https://github.com/nijaru/kombrucha"
version = "0.1.21"
[profile.release]
codegen-units = 1
debug = 2
lto = true
opt-level = 3
strip = true
[[test]]
name = "cleanup_tests"
path = "tests/cleanup_tests.rs"
[[test]]
name = "parallel_tests"
path = "tests/parallel_tests.rs"
[[test]]
name = "regression_tests"
path = "tests/regression_tests.rs"
[[test]]
name = "relocation_tests"
path = "tests/relocation_tests.rs"
[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"