[package]
edition = "2024"
rust-version = "1.97.1"
name = "forkctl"
version = "0.0.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Control audited StGit downstream patch stacks"
homepage = "https://github.com/victor-software-house/forkctl"
readme = "README.md"
keywords = [
"git",
"stgit",
"fork",
"patches",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/victor-software-house/forkctl"
[[bin]]
name = "forkctl"
path = "src/main.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "mise"
path = "tests/mise.rs"
[dependencies.anstream]
version = "=1.0.0"
[dependencies.anstyle]
version = "=1.0.14"
[dependencies.anyhow]
version = "=1.0.104"
[dependencies.askama]
version = "=0.16.0"
features = [
"config",
"derive",
"std",
]
default-features = false
[dependencies.clap]
version = "=4.6.5"
features = [
"derive",
"env",
"string",
]
[dependencies.clap_complete]
version = "=4.6.8"
features = ["unstable-dynamic"]
[dependencies.comfy-table]
version = "=7.2.2"
features = ["custom_styling"]
default-features = false
[dependencies.globset]
version = "=0.4.19"
default-features = false
[dependencies.schemars]
version = "=1.2.2"
[dependencies.serde]
version = "=1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.151"
[dependencies.tempfile]
version = "=3.27.0"
[dependencies.usage-lib]
version = "=4.1.0"
features = ["clap"]
default-features = false
[dev-dependencies.insta]
version = "=1.48.0"
features = ["json"]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"