Open
Description
Currently it is possible to specify something like following in Cargo.toml
:
[target.'cfg(unix)'.build-dependencies.cc]
version = "1.0"
however it is not feasible to use this functionality, because you cannot conditionally extern use
crates or specify per-target build.rs scripts (i.e. the following does not work):
[target.'cfg(unix)'.package]
build = "build/unix.rs"