[package]
edition = "2024"
rust-version = "1.96"
name = "treeboot-core"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable worktree bootstrap engine for the treeboot CLI."
homepage = "https://github.com/jimeh/treeboot"
documentation = "https://docs.rs/treeboot-core"
readme = "README.md"
keywords = [
"git",
"worktree",
"bootstrap",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/jimeh/treeboot"
[lib]
name = "treeboot_core"
path = "src/lib.rs"
[[example]]
name = "generate_config_schema"
path = "examples/generate_config_schema.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.ignore]
version = "0.4.26"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1.2"
[dev-dependencies.schemars]
version = "1.2.1"
[dev-dependencies.serde_json]
version = "1.0.150"
[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