Files
rust/library/test/Cargo.toml
2025-03-11 09:46:34 -07:00

15 lines
391 B
TOML

cargo-features = ["public-dependency"]
[package]
name = "test"
version = "0.0.0"
edition = "2024"
[dependencies]
getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
std = { path = "../std", public = true }
core = { path = "../core", public = true }
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
libc = { version = "0.2.150", default-features = false }