2581b14147
These describe the structure of all our crate dependencies.
14 lines
277 B
TOML
14 lines
277 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 = { path = "../libgetopts" }
|
|
term = { path = "../libterm" }
|
|
serialize = { path = "../libserialize" }
|