blob: 7b76dc83aa253ecc267d0913737305a5a573e415 [file] [log] [blame]
ThiƩbaud Weksteend4f2c3c2020-11-03 11:08:00 +01001[package]
2authors = ["The Rust Project Developers"]
3name = "test"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8crate-type = ["dylib", "rlib"]
9
10[dependencies]
11cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
12getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
13term = { path = "../term" }
14std = { path = "../std" }
15core = { path = "../core" }
16libc = { version = "0.2", default-features = false }
17panic_unwind = { path = "../panic_unwind" }
18panic_abort = { path = "../panic_abort" }
19
20# not actually used but needed to always have proc_macro in the sysroot
21proc_macro = { path = "../proc_macro" }
22
23# Forward features to the `std` crate as necessary
24[features]
25default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
26backtrace = ["std/backtrace"]
27compiler-builtins-c = ["std/compiler-builtins-c"]
28llvm-libunwind = ["std/llvm-libunwind"]
29panic-unwind = ["std/panic_unwind"]
30panic_immediate_abort = ["std/panic_immediate_abort"]
31profiler = ["std/profiler"]
32std_detect_file_io = ["std/std_detect_file_io"]
33std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]