@@ -13,25 +13,25 @@ crate-type = ["dylib", "rlib"]
1313
1414[dependencies ]
1515alloc = { 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 }
1919core = { path = " ../core" , public = true }
20- compiler_builtins = { version = " =0.1.140" }
20+ compiler_builtins = { version = " =0.1.140" , public = false }
2121unwind = { path = " ../unwind" }
2222hashbrown = { version = " 0.15" , default-features = false , features = [
2323 ' rustc-dep-of-std' ,
24- ] }
24+ ], public = false }
2525std_detect = { path = " ../stdarch/crates/std_detect" , default-features = false , features = [
2626 ' rustc-dep-of-std' ,
27- ] }
27+ ], public = false }
2828
2929# 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 }
3131
3232[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 }
3535
3636[target .'cfg(not(all(windows, target_env = "msvc")))' .dependencies ]
3737libc = { version = " 0.2.169" , default-features = false , features = [
@@ -46,15 +46,15 @@ object = { version = "0.36.0", default-features = false, optional = true, featur
4646 ' pe' ,
4747 ' unaligned' ,
4848 ' archive' ,
49- ] }
49+ ], public = false }
5050
5151[target .'cfg(target_os = "aix")' .dependencies ]
5252object = { version = " 0.36.0" , default-features = false , optional = true , features = [
5353 ' read_core' ,
5454 ' xcoff' ,
5555 ' unaligned' ,
5656 ' archive' ,
57- ] }
57+ ], public = false }
5858
5959[target .'cfg(windows)' .dependencies .windows-targets ]
6060path = " ../windows_targets"
@@ -64,7 +64,7 @@ rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
6464rand_xorshift = " 0.3.0"
6565
6666[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 }
6868
6969[target .x86_64-fortanix-unknown-sgx .dependencies ]
7070fortanix-sgx-abi = { version = " 0.5.0" , features = [
@@ -82,8 +82,8 @@ wasi = { version = "0.11.0", features = [
8282], default-features = false }
8383
8484[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 }
8787
8888[features ]
8989backtrace = [
0 commit comments