arkham/Cargo.toml

42 lines
959 B
TOML
Raw Normal View History

2021-06-19 07:20:29 +00:00
[package]
name = "arkham"
version = "0.1.1"
2021-06-19 07:20:29 +00:00
authors = ["Joe Bellus <joe@5sigma.io>"]
edition = "2018"
description = "A framework for CLI applications"
repository = "https://git.5sigma.io/arkham/arkham"
readme = "README.md"
2021-06-21 01:51:16 +00:00
license = "Apache-2.0"
keywords = ["CLI", "arguments", "config"]
categories = ["command-line-interface", "config"]
2021-06-19 07:20:29 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true}
toml = { version="0.5.8", optional = true}
textwrap = "0.14.2"
2022-01-06 05:46:27 +00:00
crossterm = { version = "0.22.1", features=["event-stream"]}
[features]
config = ["serialize"]
config_toml = ["toml", "config"]
config_json = ["serde_json", "config"]
serialize = ["serde"]
2021-06-19 07:20:29 +00:00
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "arg_parsing"
harness = false
2022-01-06 05:46:27 +00:00
[[bench]]
name = "space_fill"
harness = false