| cargo-features = ["public-dependency"] |
| |
| [package] |
| name = "sysroot" |
| version = "0.0.0" |
| edition = "2024" |
| |
| [lib] |
| test = false |
| bench = false |
| # 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"] |