[package]
edition = "2024"
name = "npmgen-cli"
version = "0.1.1"
authors = ["Gabriel GRONDIN <gglinnk@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line driver for npmgen: standalone `npmgen` and the `cargo npmgen` subcommand."
readme = "README.md"
license = "MIT"
repository = "https://github.com/GGLinnk/npmgen-rs"
resolver = "2"
[lib]
name = "npmgen_cli"
path = "src/lib.rs"
[[bin]]
name = "cargo-npmgen"
path = "src/bin/cargo-npmgen.rs"
[[bin]]
name = "npmgen"
path = "src/bin/npmgen.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.npmgen-core]
version = "0.1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.rust]
unsafe_code = "forbid"