]> git.proxmox.com Git - rustc.git/blame - library/test/Cargo.toml
New upstream version 1.67.1+dfsg1
[rustc.git] / library / test / Cargo.toml
CommitLineData
7453a54e 1[package]
7453a54e
SL
2name = "test"
3version = "0.0.0"
5099ac24 4edition = "2021"
7453a54e
SL
5
6[lib]
7453a54e
SL
7crate-type = ["dylib", "rlib"]
8
9[dependencies]
487cf647 10cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
e1599b0c 11getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
3dfed10e
XL
12std = { path = "../std" }
13core = { path = "../core" }
e1599b0c 14libc = { version = "0.2", default-features = false }
3dfed10e
XL
15panic_unwind = { path = "../panic_unwind" }
16panic_abort = { path = "../panic_abort" }
a1dfa0c6
XL
17
18# not actually used but needed to always have proc_macro in the sysroot
3dfed10e 19proc_macro = { path = "../proc_macro" }
e1599b0c
XL
20
21# Forward features to the `std` crate as necessary
22[features]
3dfed10e 23default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
e1599b0c
XL
24backtrace = ["std/backtrace"]
25compiler-builtins-c = ["std/compiler-builtins-c"]
1b1a35ee 26compiler-builtins-mem = ["std/compiler-builtins-mem"]
5869c6ff 27compiler-builtins-no-asm = ["std/compiler-builtins-no-asm"]
fc512014 28compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"]
e1599b0c 29llvm-libunwind = ["std/llvm-libunwind"]
29967ef6 30system-llvm-libunwind = ["std/system-llvm-libunwind"]
e1599b0c
XL
31panic-unwind = ["std/panic_unwind"]
32panic_immediate_abort = ["std/panic_immediate_abort"]
33profiler = ["std/profiler"]
3dfed10e
XL
34std_detect_file_io = ["std/std_detect_file_io"]
35std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]
c295e0f8 36std_detect_env_override = ["std/std_detect_env_override"]