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