clap/Cargo.toml

18 lines
453 B
TOML
Raw Normal View History

2015-02-25 13:37:25 +00:00
[package]
name = "clap"
2015-03-24 18:35:47 +00:00
version = "0.4.15"
2015-02-25 13:37:25 +00:00
authors = ["Kevin K. <kbknapp@gmail.com>"]
2015-03-24 16:16:59 +00:00
exclude = ["docs/*", "examples/*", "claptests/*"]
description = "A Command Line Argument Parser written in Rust"
repository = "https://github.com/kbknapp/clap-rs.git"
2015-03-01 16:19:20 +00:00
documentation = "http://kbknapp.github.io/clap-rs/docs/clap/index.html"
readme = "README.md"
keywords = ["argument", "command", "arg", "parser", "parse"]
license = "MIT"
2015-03-24 18:35:47 +00:00
[dependencies]
libc = "*"