1
+ cargo-features = [" public-dependency" ]
2
+
1
3
[package ]
2
4
name = " std"
3
5
version = " 0.0.0"
@@ -10,12 +12,12 @@ edition = "2021"
10
12
crate-type = [" dylib" , " rlib" ]
11
13
12
14
[dependencies ]
13
- alloc = { path = " ../alloc" }
15
+ alloc = { path = " ../alloc" , public = true }
14
16
cfg-if = { version = " 1.0" , features = [' rustc-dep-of-std' ] }
15
17
panic_unwind = { path = " ../panic_unwind" , optional = true }
16
18
panic_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 }
19
21
compiler_builtins = { version = " 0.1.92" }
20
22
profiler_builtins = { path = " ../profiler_builtins" , optional = true }
21
23
unwind = { path = " ../unwind" }
@@ -25,7 +27,7 @@ std_detect = { path = "../stdarch/crates/std_detect", default-features = false,
25
27
# Dependencies of the `backtrace` crate
26
28
addr2line = { version = " 0.19.0" , optional = true , default-features = false }
27
29
rustc-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 }
29
31
[dependencies .object ]
30
32
version = " 0.30.0"
31
33
optional = true
0 commit comments