5c3d0e6de3
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.
14 lines
215 B
TOML
14 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" }
|