[package]
name = "tagit-impl"
version = "0.6.1"
description = "`tagit` CLI implementation"
authors.workspace = true
edition.workspace = true
license.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
tagit-changelog-command = { workspace = true, optional = true }
tagit-command.workspace = true
tagit-diff = { workspace = true, optional = true }
tagit-release = { workspace = true, optional = true }
tagit-sub = { workspace = true, optional = true }
tagit-tag = { workspace = true, optional = true }
tagit-workspace-changelog = { workspace = true, optional = true }
anyhow.workspace = true
clap.workspace = true
clap_complete = "4.5.7"
clap_mangen = "0.2.22"
[features]
default = []
changelog = [
"dep:tagit-changelog-command",
"dep:tagit-workspace-changelog",
"tagit-tag?/changelog",
]
diff = ["dep:tagit-diff"]
release = ["dep:tagit-release", "changelog", "tag"]
sub = ["dep:tagit-sub", "tagit-sub/impl"]
tag = ["dep:tagit-tag"]