rust/src/libtest/Cargo.toml
Alex Crichton 5c3d0e6de3 Switch to the crates.io getopts crate
This commit deletes the in-tree `getopts` crate in favor of the crates.io-based
`getopts` crate. The main difference here is with a new builder-style API, but
otherwise everything else remains relatively standard.
2017-06-20 12:43:12 -07:00

13 lines
215 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "test"
version = "0.0.0"
[lib]
name = "test"
path = "lib.rs"
crate-type = ["dylib", "rlib"]
[dependencies]
getopts = "0.2"
term = { path = "../libterm" }