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