compiler-builtins-zynq/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

2016-08-08 04:58:05 +08:00
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
build = "build.rs"
name = "compiler_builtins"
2016-08-08 04:58:05 +08:00
version = "0.1.0"
2016-08-11 08:12:37 +08:00
2017-04-11 03:38:17 +08:00
[build-dependencies]
2017-04-11 05:12:49 +08:00
cast = "0.2.0"
2017-04-11 03:38:17 +08:00
rand = "0.3.15"
[build-dependencies.gcc]
optional = true
version = "0.3.36"
2016-08-15 10:59:48 +08:00
[features]
c = ["gcc"]
compiler-builtins = []
default = ["compiler-builtins"]
mem = []
rustbuild = ["compiler-builtins"]
2017-04-11 05:12:49 +08:00
[target]
[target."cfg(all(target_arch = \"arm\", not(any(target_env = \"gnu\", target_env = \"musl\")), target_os = \"linux\"))"]
[target."cfg(all(target_arch = \"arm\", not(any(target_env = \"gnu\", target_env = \"musl\")), target_os = \"linux\"))".dev-dependencies]
[target."cfg(all(target_arch = \"arm\", not(any(target_env = \"gnu\", target_env = \"musl\")), target_os = \"linux\"))".dev-dependencies.test]
git = "https://github.com/japaric/utest"
[target."cfg(all(target_arch = \"arm\", not(any(target_env = \"gnu\", target_env = \"musl\")), target_os = \"linux\"))".dev-dependencies.utest-cortex-m-qemu]
default-features = false
git = "https://github.com/japaric/utest"
[target."cfg(all(target_arch = \"arm\", not(any(target_env = \"gnu\", target_env = \"musl\")), target_os = \"linux\"))".dev-dependencies.utest-macros]
git = "https://github.com/japaric/utest"
[workspace]