]> git.lizzy.rs Git - rust.git/blob - library/test/Cargo.toml
Rollup merge of #107491 - notriddle:notriddle/setting-check, r=GuillaumeGomez
[rust.git] / library / test / Cargo.toml
1 [package]
2 name = "test"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 crate-type = ["dylib", "rlib"]
8
9 [dependencies]
10 cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
11 getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
12 std = { path = "../std" }
13 core = { path = "../core" }
14 libc = { version = "0.2", default-features = false }
15 panic_unwind = { path = "../panic_unwind" }
16 panic_abort = { path = "../panic_abort" }
17
18 # not actually used but needed to always have proc_macro in the sysroot
19 proc_macro = { path = "../proc_macro" }
20
21 # Forward features to the `std` crate as necessary
22 [features]
23 default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
24 backtrace = ["std/backtrace"]
25 compiler-builtins-c = ["std/compiler-builtins-c"]
26 compiler-builtins-mem = ["std/compiler-builtins-mem"]
27 compiler-builtins-no-asm = ["std/compiler-builtins-no-asm"]
28 compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"]
29 llvm-libunwind = ["std/llvm-libunwind"]
30 system-llvm-libunwind = ["std/system-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"]
36 std_detect_env_override = ["std/std_detect_env_override"]