@@ -13,25 +13,25 @@ crate-type = ["dylib", "rlib"]
13
13
14
14
[dependencies ]
15
15
alloc = { path = " ../alloc" , public = true }
16
- cfg-if = { version = " 1.0" , features = [' rustc-dep-of-std' ] }
17
- panic_unwind = { path = " ../panic_unwind" , optional = true }
18
- panic_abort = { path = " ../panic_abort" }
16
+ cfg-if = { version = " 1.0" , features = [' rustc-dep-of-std' ], public = false }
17
+ panic_unwind = { path = " ../panic_unwind" , optional = true , public = false }
18
+ panic_abort = { path = " ../panic_abort" , public = false }
19
19
core = { path = " ../core" , public = true }
20
- compiler_builtins = { version = " =0.1.143" }
20
+ compiler_builtins = { version = " =0.1.143" , public = false }
21
21
unwind = { path = " ../unwind" }
22
22
hashbrown = { version = " 0.15" , default-features = false , features = [
23
23
' rustc-dep-of-std' ,
24
- ] }
24
+ ], public = false }
25
25
std_detect = { path = " ../stdarch/crates/std_detect" , default-features = false , features = [
26
26
' rustc-dep-of-std' ,
27
- ] }
27
+ ], public = false }
28
28
29
29
# Dependencies of the `backtrace` crate
30
- rustc-demangle = { version = " 0.1.24" , features = [' rustc-dep-of-std' ] }
30
+ rustc-demangle = { version = " 0.1.24" , features = [' rustc-dep-of-std' ], public = false }
31
31
32
32
[target .'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))' .dependencies ]
33
- miniz_oxide = { version = " 0.8.0" , optional = true , default-features = false }
34
- addr2line = { version = " 0.24.0" , optional = true , default-features = false }
33
+ miniz_oxide = { version = " 0.8.0" , optional = true , default-features = false , public = false }
34
+ addr2line = { version = " 0.24.0" , optional = true , default-features = false , public = false }
35
35
36
36
[target .'cfg(not(all(windows, target_env = "msvc")))' .dependencies ]
37
37
libc = { version = " 0.2.169" , default-features = false , features = [
@@ -46,15 +46,15 @@ object = { version = "0.36.0", default-features = false, optional = true, featur
46
46
' pe' ,
47
47
' unaligned' ,
48
48
' archive' ,
49
- ] }
49
+ ], public = false }
50
50
51
51
[target .'cfg(target_os = "aix")' .dependencies ]
52
52
object = { version = " 0.36.0" , default-features = false , optional = true , features = [
53
53
' read_core' ,
54
54
' xcoff' ,
55
55
' unaligned' ,
56
56
' archive' ,
57
- ] }
57
+ ], public = false }
58
58
59
59
[target .'cfg(windows)' .dependencies .windows-targets ]
60
60
path = " ../windows_targets"
@@ -64,7 +64,7 @@ rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
64
64
rand_xorshift = " 0.3.0"
65
65
66
66
[target .'cfg(any(all(target_family = "wasm", target_os = "unknown"), target_os = "xous", all(target_vendor = "fortanix", target_env = "sgx")))' .dependencies ]
67
- dlmalloc = { version = " 0.2.4" , features = [' rustc-dep-of-std' ] }
67
+ dlmalloc = { version = " 0.2.4" , features = [' rustc-dep-of-std' ], public = false }
68
68
69
69
[target .x86_64-fortanix-unknown-sgx .dependencies ]
70
70
fortanix-sgx-abi = { version = " 0.5.0" , features = [
@@ -82,8 +82,8 @@ wasi = { version = "0.11.0", features = [
82
82
], default-features = false }
83
83
84
84
[target .'cfg(target_os = "uefi")' .dependencies ]
85
- r-efi = { version = " 4.5.0" , features = [' rustc-dep-of-std' ] }
86
- r-efi-alloc = { version = " 1.0.0" , features = [' rustc-dep-of-std' ] }
85
+ r-efi = { version = " 4.5.0" , features = [' rustc-dep-of-std' ], public = false }
86
+ r-efi-alloc = { version = " 1.0.0" , features = [' rustc-dep-of-std' ], public = false }
87
87
88
88
[features ]
89
89
backtrace = [
0 commit comments