]> git.lizzy.rs Git - rust.git/blob - src/libtest/Cargo.toml
Rollup merge of #74033 - ehuss:std-compile-all-platforms, r=Mark-Simulacrum
[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 cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
14 getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
15 term = { path = "../libterm" }
16 std = { path = "../libstd" }
17 core = { path = "../libcore" }
18 libc = { version = "0.2", default-features = false }
19 panic_unwind = { path = "../libpanic_unwind" }
20 panic_abort = { path = "../libpanic_abort" }
21
22 # not actually used but needed to always have proc_macro in the sysroot
23 proc_macro = { path = "../libproc_macro" }
24
25 # Forward features to the `std` crate as necessary
26 [features]
27 default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
28 backtrace = ["std/backtrace"]
29 compiler-builtins-c = ["std/compiler-builtins-c"]
30 llvm-libunwind = ["std/llvm-libunwind"]
31 panic-unwind = ["std/panic_unwind"]
32 panic_immediate_abort = ["std/panic_immediate_abort"]
33 profiler = ["std/profiler"]
34 std_detect_file_io = ["std/std_detect_file_io"]
35 std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]