blob: 5af63aa970f2c7cb50a720298b73dbc875e5b4c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[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"
|