]> git.lizzy.rs Git - rust.git/blob - library/std/Cargo.toml
Simplify Command::spawn (no semantic change)
[rust.git] / library / std / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "std"
4 version = "0.0.0"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-lang/rust.git"
7 description = "The Rust Standard Library"
8 edition = "2018"
9
10 [lib]
11 crate-type = ["dylib", "rlib"]
12
13 [dependencies]
14 alloc = { path = "../alloc" }
15 cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
16 panic_unwind = { path = "../panic_unwind", optional = true }
17 panic_abort = { path = "../panic_abort" }
18 core = { path = "../core" }
19 libc = { version = "0.2.88", default-features = false, features = ['rustc-dep-of-std'] }
20 compiler_builtins = { version = "0.1.39" }
21 profiler_builtins = { path = "../profiler_builtins", optional = true }
22 unwind = { path = "../unwind" }
23 hashbrown = { version = "0.11", default-features = false, features = ['rustc-dep-of-std'] }
24
25 # Dependencies of the `backtrace` crate
26 addr2line = { version = "0.14.0", optional = true, default-features = false }
27 rustc-demangle = { version = "0.1.18", features = ['rustc-dep-of-std'] }
28 miniz_oxide = { version = "0.4.0", optional = true, default-features = false }
29 [dependencies.object]
30 version = "0.22"
31 optional = true
32 default-features = false
33 features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']
34
35 [dev-dependencies]
36 rand = "0.7"
37
38 [target.'cfg(any(all(target_arch = "wasm32", not(target_os = "emscripten")), all(target_vendor = "fortanix", target_env = "sgx")))'.dependencies]
39 dlmalloc = { version = "0.2.1", features = ['rustc-dep-of-std'] }
40
41 [target.x86_64-fortanix-unknown-sgx.dependencies]
42 fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }
43
44 [target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_os = "hermit"))'.dependencies]
45 hermit-abi = { version = "0.1.17", features = ['rustc-dep-of-std'] }
46
47 [target.wasm32-wasi.dependencies]
48 wasi = { version = "0.9.0", features = ['rustc-dep-of-std'], default-features = false }
49
50 [features]
51 backtrace = [
52   "gimli-symbolize",
53   'addr2line/rustc-dep-of-std',
54   'object/rustc-dep-of-std',
55   'miniz_oxide/rustc-dep-of-std',
56 ]
57 gimli-symbolize = []
58
59 panic-unwind = ["panic_unwind"]
60 profiler = ["profiler_builtins"]
61 compiler-builtins-c = ["alloc/compiler-builtins-c"]
62 compiler-builtins-mem = ["alloc/compiler-builtins-mem"]
63 compiler-builtins-no-asm = ["alloc/compiler-builtins-no-asm"]
64 compiler-builtins-mangled-names = ["alloc/compiler-builtins-mangled-names"]
65 llvm-libunwind = ["unwind/llvm-libunwind"]
66 system-llvm-libunwind = ["unwind/system-llvm-libunwind"]
67
68 # Make panics and failed asserts immediately abort without formatting any message
69 panic_immediate_abort = ["core/panic_immediate_abort"]
70
71 # Enable std_detect default features for stdarch/crates/std_detect:
72 # https://github.com/rust-lang/stdarch/blob/master/crates/std_detect/Cargo.toml
73 std_detect_file_io = []
74 std_detect_dlsym_getauxval = []
75
76 [package.metadata.fortanix-sgx]
77 # Maximum possible number of threads when testing
78 threads = 125
79 # Maximum heap size
80 heap_size = 0x8000000
81
82 [[bench]]
83 name = "stdbenches"
84 path = "benches/lib.rs"
85 test = true