[[bin]]
name = "zackstrap"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive"]
version = "4.4"
[dependencies.colored]
version = "2.0"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.predicates]
version = "3.1.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[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"
[lib]
name = "zackstrap"
path = "src/lib.rs"
[package]
authors = ["Zack Kitzmiller"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A CLI tool to bootstrap project configuration files"
edition = "2021"
keywords = ["cli", "bootstrap", "configuration", "project-setup"]
license = "MIT"
name = "zackstrap"
readme = "README.md"
repository = "https://github.com/zackkitzmiller/zackstrap"
version = "1.1.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
[profile.test]
debug = 2
opt-level = 0
[[test]]
name = "cli_tests"
path = "tests/cli_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"