@@ -17,7 +17,6 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
17
17
panic_unwind = { path = " ../panic_unwind" , optional = true }
18
18
panic_abort = { path = " ../panic_abort" }
19
19
core = { path = " ../core" , public = true }
20
- libc = { version = " 0.2.153" , default-features = false , features = [' rustc-dep-of-std' ], public = true }
21
20
compiler_builtins = { version = " 0.1.105" }
22
21
profiler_builtins = { path = " ../profiler_builtins" , optional = true }
23
22
unwind = { path = " ../unwind" }
@@ -31,6 +30,12 @@ rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
31
30
miniz_oxide = { version = " 0.7.0" , optional = true , default-features = false }
32
31
addr2line = { version = " 0.21.0" , optional = true , default-features = false }
33
32
33
+ [target .'cfg(not(all(windows, target_env = "msvc")))' .dependencies ]
34
+ libc = { version = " 0.2.153" , default-features = false , features = [' rustc-dep-of-std' ], public = true }
35
+
36
+ [target .'cfg(all(windows, target_env = "msvc"))' .dependencies ]
37
+ libc = { version = " 0.2.153" , default-features = false }
38
+
34
39
[target .'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))' .dependencies ]
35
40
object = { version = " 0.32.0" , default-features = false , optional = true , features = [' read_core' , ' elf' , ' macho' , ' pe' , ' unaligned' , ' archive' ] }
36
41
0 commit comments