rust/src/libcore/Cargo.toml
Alex Crichton 994bfd4141 Update Cargo submodule
Required moving all fulldeps tests depending on `rand` to different locations as
now there's multiple `rand` crates that can't be implicitly linked against.
2018-03-11 10:59:28 -07:00

22 lines
310 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "core"
version = "0.0.0"
[lib]
name = "core"
path = "lib.rs"
test = false
bench = false
[[test]]
name = "coretests"
path = "../libcore/tests/lib.rs"
[[bench]]
name = "corebenches"
path = "../libcore/benches/lib.rs"
[dev-dependencies]
rand = "0.4"