blob: 96a84496b9c9c23245790d2eef7f67e58aa4a4ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[package]
authors = ["The Rust Project Developers"]
name = "test"
version = "0.0.0"
[lib]
name = "test"
path = "lib.rs"
crate-type = ["dylib", "rlib"]
[dependencies]
getopts = { path = "../libgetopts" }
term = { path = "../libterm" }
serialize = { path = "../libserialize" }
|