[package]
edition = "2021"
name = "zackstrap"
version = "1.6.2"
authors = ["Zack Kitzmiller"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool to bootstrap project configuration files"
readme = "README.md"
keywords = [
"cli",
"bootstrap",
"configuration",
"project-setup",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/zackkitzmiller/zackstrap"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "zackstrap"
path = "src/lib.rs"
[[bin]]
name = "zackstrap"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "fail_on_exists_tests"
path = "tests/fail_on_exists_tests.rs"
[[test]]
name = "generators_tests"
path = "tests/generators_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.colored]
version = "3.0"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.predicates]
version = "3.1.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.assert_fs]
version = "1.1"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.toml]
version = "0.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[profile.test]
opt-level = 0
debug = 2