mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
32 lines
920 B
TOML
32 lines
920 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "test"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "test"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib", "rlib"]
|
|
|
|
[dependencies]
|
|
getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
|
|
term = { path = "../libterm" }
|
|
std = { path = "../libstd" }
|
|
core = { path = "../libcore" }
|
|
libc = { version = "0.2", default-features = false }
|
|
panic_unwind = { path = "../libpanic_unwind" }
|
|
panic_abort = { path = "../libpanic_abort" }
|
|
|
|
# not actually used but needed to always have proc_macro in the sysroot
|
|
proc_macro = { path = "../libproc_macro" }
|
|
|
|
# Forward features to the `std` crate as necessary
|
|
[features]
|
|
backtrace_support = ["std/backtrace_support"]
|
|
compiler-builtins-c = ["std/compiler-builtins-c"]
|
|
llvm-libunwind = ["std/llvm-libunwind"]
|
|
panic-unwind = ["std/panic_unwind"]
|
|
panic_immediate_abort = ["std/panic_immediate_abort"]
|
|
profiler = ["std/profiler"]
|