0d5cfd9117
Right now everything in TARGET_CRATES is built by default for all non-fulldeps tests and is distributed by default for all target standard library packages. Currenly this includes a number of unstable crates which are rarely used such as `graphviz` and `rbml`> This commit trims down the set of `TARGET_CRATES`, moves a number of tests to `*-fulldeps` as a result, and trims down the dependencies of libtest so we can distribute fewer crates in the `rust-std` packages.
14 lines
236 B
TOML
14 lines
236 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" }
|