compiler-builtins-zynq/Cargo.toml

29 lines
520 B
TOML
Raw Normal View History

2016-08-08 04:58:05 +08:00
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
build = "build.rs"
2016-08-08 04:58:05 +08:00
name = "rustc_builtins"
version = "0.1.0"
2016-08-11 08:12:37 +08:00
[build-dependencies]
gcc = "0.3.35"
rustc-cfg = "0.2.0"
2016-08-15 10:59:48 +08:00
[dependencies]
[dependencies.rlibc]
git = "https://github.com/alexcrichton/rlibc"
optional = true
2016-08-15 10:59:48 +08:00
2016-08-11 08:12:37 +08:00
[dev-dependencies]
quickcheck = "0.3.1"
rand = "0.3.14"
gcc_s = { path = "gcc_s" }
compiler-rt = { path = "compiler-rt" }
2016-08-15 10:59:48 +08:00
[features]
# Build the missing intrinsics from compiler-rt C source code
c = []
weak = ["rlibc/weak"]
[workspace]