summary refs log tree commit diff
path: root/src/rustc/test_shim/Cargo.toml
blob: 87f2ccd51e8850ee933034d1b898107b5fde327a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This is a shim Cargo.toml which serves as a proxy for building libtest.
#
# The reason this shim exists is basically the same reason that `std_shim`
# exists, and more documentation can be found in that `Cargo.toml` as to why.

[package]
name = "test_shim"
version = "0.1.0"
authors = ["The Rust Project Developers"]

[lib]
name = "test_shim"
path = "lib.rs"

[profile.release]
opt-level = 2
[profile.bench]
opt-level = 2

# These options are controlled from our rustc wrapper script, so turn them off
# here and have them controlled elsewhere.
[profile.dev]
debug = false
debug-assertions = false

[dependencies]
test = { path = "../../libtest" }