proton-cli 0.0.0

A template command line application written in Rust leveraging the clap framework
[package]
authors = ["FL03 <jo3mccain@icloud.com>"]
categories = []
description = "A template command line application written in Rust leveraging the clap framework"
edition = "2021"
homepage = "https://github.com/scattered-systems/proton/wiki"
keywords = ["binary", "cli"]
license = "Apache-2.0"
name = "proton-cli"
readme = "README.md"
repository = "https://github.com/scattered-systems/proton-cli.git"
version = "0.0.0"

[[bin]]
bench = false
doctest = false
name = "proton"
path = "src/main.rs"
test = false

[dependencies]
clap = { features = ["derive", "env"], version = "4" }
serde = { features = ["derive"], version = "1" }
serde_json = "1"
strum = { features = ["derive"], version = "0.26" }
smart-default = "0.7"
tracing = { features = ["log"], version = "0.1" }
tracing-subscriber = { features = ["env-filter"], version = "0.3" }

# project dependencies
proton = { version = "0.0.0", path = "../../lib/proton" }

[dev-dependencies]
lazy_static = "1"

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

[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'abort'
incremental = true
codegen-units = 256
rpath = false

[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = false
panic = 'abort'
incremental = false
codegen-units = 16
rpath = false