1+ cargo-features = [" public-dependency" ]
2+
13[package ]
24name = " std"
35version = " 0.0.0"
@@ -10,12 +12,12 @@ edition = "2021"
1012crate-type = [" dylib" , " rlib" ]
1113
1214[dependencies ]
13- alloc = { path = " ../alloc" }
15+ alloc = { path = " ../alloc" , public = true }
1416cfg-if = { version = " 1.0" , features = [' rustc-dep-of-std' ] }
1517panic_unwind = { path = " ../panic_unwind" , optional = true }
1618panic_abort = { path = " ../panic_abort" }
17- core = { path = " ../core" }
18- libc = { version = " 0.2.143" , default-features = false , features = [' rustc-dep-of-std' ] }
19+ core = { path = " ../core" , public = true }
20+ libc = { version = " 0.2.143" , default-features = false , features = [' rustc-dep-of-std' ], public = true }
1921compiler_builtins = { version = " 0.1.92" }
2022profiler_builtins = { path = " ../profiler_builtins" , optional = true }
2123unwind = { path = " ../unwind" }
@@ -25,7 +27,7 @@ std_detect = { path = "../stdarch/crates/std_detect", default-features = false,
2527# Dependencies of the `backtrace` crate
2628addr2line = { version = " 0.19.0" , optional = true , default-features = false }
2729rustc-demangle = { version = " 0.1.21" , features = [' rustc-dep-of-std' ] }
28- miniz_oxide = { version = " 0.6.0" , optional = true , default-features = false }
30+ miniz_oxide = { version = " 0.6.0" , optional = true , default-features = false , public = false }
2931[dependencies .object ]
3032version = " 0.30.0"
3133optional = true
@@ -40,7 +42,7 @@ rand_xorshift = "0.3.0"
4042dlmalloc = { version = " 0.2.3" , features = [' rustc-dep-of-std' ] }
4143
4244[target .x86_64-fortanix-unknown-sgx .dependencies ]
43- fortanix-sgx-abi = { version = " 0.5.0" , features = [' rustc-dep-of-std' ] }
45+ fortanix-sgx-abi = { version = " 0.5.0" , features = [' rustc-dep-of-std' ], public = true }
4446
4547[target .'cfg(target_os = "hermit")' .dependencies ]
4648hermit-abi = { version = " 0.3.0" , features = [' rustc-dep-of-std' ] }
0 commit comments