[package] name = "arkham" version = "0.1.0" authors = ["Joe Bellus "] edition = "2018" description = "A framework for CLI applications" repository = "https://git.5sigma.io/arkham/arkham" readme = "README.md" license = "LICENSE" keywords = ["CLI", "arguments", "config"] categories = ["command-line-interface", "config"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # indicatif = "0.15.0" console = "0.14.0" serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true} toml = { version="0.5.8", optional = true} [features] config = ["serde"] config_toml = ["toml", "config"] config_json = ["serde_json", "config"] [dev-dependencies] criterion = "0.3" [[bench]] name = "arg_parsing" harness = false