You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
603 B
26 lines
603 B
[package]
|
|
name = "clappconfig"
|
|
version = "0.4.0"
|
|
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "Clap-based app config boilerplate: set up logging, load config, parse args"
|
|
repository = "https://git.ondrovo.com/packages/cli-app-base"
|
|
readme = "README.md"
|
|
keywords = ["clap", "cli", "logging", "config", "boilerplate"]
|
|
categories = [
|
|
"command-line-interface"
|
|
]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
anyhow = "1.0.28"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
clap = "2.33"
|
|
json5 = "0.2"
|
|
|
|
[dev-dependencies]
|
|
smart-default = "0.6"
|
|
serde_derive = "1.0"
|
|
|