1cargo-features = ["public-dependency"]
2
3[package]
4name = "test"
5version = "0.0.0"
6edition = "2024"
7
8[dependencies]
9getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
10std = { path = "../std", public = true }
11core = { path = "../core", public = true }
12
13[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
14libc = { version = "0.2.150", default-features = false }
15
Learn Rust with the experts
Find out more