shellcomp 0.1.11

Shell completion installation and activation helpers for Rust CLI tools
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94"
name = "shellcomp"
version = "0.1.11"
build = false
include = [
    "/Cargo.toml",
    "/LICENSE",
    "/README.md",
    "/src/**",
    "/tests/**",
    "/examples/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shell completion installation and activation helpers for Rust CLI tools"
homepage = "https://github.com/lvillis/shellcomp-rs"
documentation = "https://docs.rs/shellcomp"
readme = "README.md"
keywords = [
    "cli",
    "completion",
    "shell",
    "bash",
    "zsh",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/lvillis/shellcomp-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[package.metadata.release]
tag-prefix = ""
tag-name = "{{prefix}}{{version}}"
pre-release-commit-message = "chore: release {{crate_name}} version {{version}}"
tag-message = "chore: release {{crate_name}} version {{version}}"
pre-release-hook = [
    "git",
    "cliff",
    "-o",
    "CHANGELOG.md",
    "--tag",
    "{{version}}",
]

[features]
clap = [
    "dep:clap",
    "dep:clap_complete",
]
default = []

[lib]
name = "shellcomp"
path = "src/lib.rs"

[[example]]
name = "clap_integration"
path = "examples/clap_integration.rs"
required-features = ["clap"]

[[example]]
name = "inspect_managed_paths"
path = "examples/inspect_managed_paths.rs"

[[example]]
name = "install_prebuilt"
path = "examples/install_prebuilt.rs"

[[example]]
name = "roundtrip_custom_path"
path = "examples/roundtrip_custom_path.rs"

[[test]]
name = "public_api"
path = "tests/public_api.rs"

[dependencies.clap]
version = "4.6.0"
features = [
    "std",
    "derive",
]
optional = true
default-features = false

[dependencies.clap_complete]
version = "4.6.0"
optional = true
default-features = false