clap/Cargo.toml

18 lines
457 B
TOML
Raw Normal View History

2015-02-25 08:37:25 -05:00
[package]
name = "clap"
2015-03-30 20:46:37 -04:00
version = "0.5.7"
2015-02-25 08:37:25 -05:00
authors = ["Kevin K. <kbknapp@gmail.com>"]
2015-03-24 12:16:59 -04:00
exclude = ["docs/*", "examples/*", "claptests/*"]
2015-03-24 16:30:44 -04:00
description = "A simple and efficient Command Line Argument Parser"
repository = "https://github.com/kbknapp/clap-rs.git"
2015-03-01 11:19:20 -05: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 14:35:47 -04:00
[dependencies]
libc = "*"