This config was added in207de019dc("libary: Forward compiler-builtins "asm" and "mangled-names" feature") but it does not appear this has ever been used. The PR adding it (RUST-78472) says that this was exposed to help with configuration and points at the [Hermit Cargo config], but as far as I can tell, this feature name has never been mentioned in that repository's git history. Thus, clean up a seemingly unneeded feature. [Hermit Cargo config]:ab2b830930/.cargo/config
36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
cargo-features = ["public-dependency"]
|
|
|
|
[package]
|
|
name = "sysroot"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
# make sure this crate isn't included in public standard library docs
|
|
doc = false
|
|
|
|
# this is a dummy crate to ensure that all required crates appear in the sysroot
|
|
[dependencies]
|
|
proc_macro = { path = "../proc_macro", public = true }
|
|
profiler_builtins = { path = "../profiler_builtins", optional = true }
|
|
std = { path = "../std", public = true }
|
|
test = { path = "../test", public = true }
|
|
|
|
# Forward features to the `std` crate as necessary
|
|
[features]
|
|
default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
|
|
backtrace = ["std/backtrace"]
|
|
backtrace-trace-only = ["std/backtrace-trace-only"]
|
|
compiler-builtins-c = ["std/compiler-builtins-c"]
|
|
compiler-builtins-mem = ["std/compiler-builtins-mem"]
|
|
compiler-builtins-no-f16-f128 = ["std/compiler-builtins-no-f16-f128"]
|
|
debug_refcell = ["std/debug_refcell"]
|
|
llvm-libunwind = ["std/llvm-libunwind"]
|
|
system-llvm-libunwind = ["std/system-llvm-libunwind"]
|
|
optimize_for_size = ["std/optimize_for_size"]
|
|
panic-unwind = ["std/panic-unwind"]
|
|
panic_immediate_abort = ["std/panic_immediate_abort"]
|
|
profiler = ["dep:profiler_builtins"]
|
|
std_detect_file_io = ["std/std_detect_file_io"]
|
|
std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]
|
|
windows_raw_dylib = ["std/windows_raw_dylib"]
|