]> git.lizzy.rs Git - rust.git/blob - src/libtest/Cargo.toml
Account for `ty::Error` when suggesting `impl Trait` or `Box<dyn Trait>`
[rust.git] / src / libtest / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "test"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "test"
9 path = "lib.rs"
10 crate-type = ["dylib", "rlib"]
11
12 [dependencies]
13 getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
14 term = { path = "../libterm" }
15 std = { path = "../libstd" }
16 core = { path = "../libcore" }
17 libc = { version = "0.2", default-features = false }
18 panic_unwind = { path = "../libpanic_unwind" }
19 panic_abort = { path = "../libpanic_abort" }
20
21 # not actually used but needed to always have proc_macro in the sysroot
22 proc_macro = { path = "../libproc_macro" }
23
24 # Forward features to the `std` crate as necessary
25 [features]
26 backtrace = ["std/backtrace"]
27 compiler-builtins-c = ["std/compiler-builtins-c"]
28 llvm-libunwind = ["std/llvm-libunwind"]
29 panic-unwind = ["std/panic_unwind"]
30 panic_immediate_abort = ["std/panic_immediate_abort"]
31 profiler = ["std/profiler"]