[package]
edition = "2024"
rust-version = "1.96"
name = "treeboot"
version = "0.11.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bootstrap Git worktrees from one repo-local setup file."
homepage = "https://github.com/jimeh/treeboot"
documentation = "https://docs.rs/treeboot"
readme = "README.md"
keywords = [
"git",
"worktree",
"bootstrap",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jimeh/treeboot"
[[bin]]
name = "treeboot"
path = "src/main.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "completions"
path = "tests/completions.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "env"
path = "tests/env.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "manual"
path = "tests/manual.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[[test]]
name = "status"
path = "tests/status.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4"
features = ["unstable-dynamic"]
[dependencies.console]
version = "0.16"
features = [
"ansi-parsing",
"std",
"unicode-width",
]
default-features = false
[dependencies.indicatif]
version = "0.18"
features = ["unicode-width"]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.treeboot-core]
version = "0.11.0"
[dependencies.yaml_serde]
version = "0.10"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.dunce]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
large_enum_variant = "deny"
needless_collect = "deny"
redundant_clone = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.future-incompatible]
level = "warn"
priority = -2
[lints.rust.nonstandard_style]
level = "deny"
priority = -1