compiler-builtins-zynq/Cargo.toml

32 lines
560 B
TOML

[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
build = "build.rs"
name = "rustc_builtins"
version = "0.1.0"
[build-dependencies]
gcc = "0.3.35"
rustc-cfg = "0.2.0"
[dependencies]
[dependencies.rlibc]
git = "https://github.com/alexcrichton/rlibc"
optional = true
[dev-dependencies]
quickcheck = "0.3.1"
rand = "0.3.14"
gcc_s = { path = "gcc_s" }
compiler-rt = { path = "compiler-rt" }
[features]
# Build the missing intrinsics from compiler-rt C source code
c = []
weak = ["rlibc/weak"]
[profile.dev]
debug-assertions = false
[workspace]