]> git.proxmox.com Git - rustc.git/blob - src/rustc/test_shim/Cargo.toml
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / rustc / test_shim / Cargo.toml
1 # This is a shim Cargo.toml which serves as a proxy for building libtest.
2 #
3 # The reason this shim exists is basically the same reason that `std_shim`
4 # exists, and more documentation can be found in that `Cargo.toml` as to why.
5
6 [package]
7 name = "test_shim"
8 version = "0.1.0"
9 authors = ["The Rust Project Developers"]
10
11 [lib]
12 name = "test_shim"
13 path = "lib.rs"
14
15 [profile.release]
16 opt-level = 2
17
18 # These options are controlled from our rustc wrapper script, so turn them off
19 # here and have them controlled elsewhere.
20 [profile.dev]
21 debug = false
22 debug-assertions = false
23
24 [dependencies]
25 test = { path = "../../libtest" }