[package]
edition = "2024"
rust-version = "1.96"
name = "treeboot"
version = "0.4.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 = "cli"
path = "tests/cli.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "manual"
path = "tests/manual.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4"
features = ["unstable-dynamic"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.treeboot-core]
version = "0.4.0"
[dev-dependencies.assert_cmd]
version = "2"
[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