blob: 573ee38886693cecb6253e8faff8b976ea3f4d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
authors = ["The Rust Project Developers"]
name = "compiletest"
version = "0.0.0"
build = "build.rs"
# Curiously, this will segfault if compiled with opt-level=3 on 64-bit MSVC when
# running the compile-fail test suite when a should-fail test panics. But hey if
# this is removed and it gets past the bots, sounds good to me.
[profile.release]
opt-level = 2
[dependencies]
log = "0.3"
env_logger = "0.3"
serialize = { path = "../../libserialize" }
|