16 lines
241 B
TOML
16 lines
241 B
TOML
[package]
|
|
name = "cross"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "*"
|
|
|
|
[dev-dependencies]
|
|
libc = "*"
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }
|