2016-08-08 04:58:05 +08:00
|
|
|
[package]
|
|
|
|
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
|
2016-09-22 10:14:38 +08:00
|
|
|
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
|
|
|
|
2016-09-27 04:55:11 +08:00
|
|
|
[build-dependencies]
|
|
|
|
gcc = "0.3.35"
|
|
|
|
rustc-cfg = "0.1.2"
|
|
|
|
|
2016-08-15 10:59:48 +08:00
|
|
|
[dependencies]
|
2016-09-22 10:38:06 +08:00
|
|
|
|
|
|
|
[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"
|
2016-09-22 10:38:06 +08:00
|
|
|
rand = "0.3.14"
|
2016-09-27 13:22:10 +08:00
|
|
|
gcc_s = { path = "gcc_s" }
|
|
|
|
compiler-rt = { path = "compiler-rt" }
|
2016-08-15 10:59:48 +08:00
|
|
|
|
|
|
|
[features]
|
2016-09-27 04:55:11 +08:00
|
|
|
# Build the missing intrinsics from compiler-rt C source code
|
|
|
|
c = []
|
2016-09-23 03:46:05 +08:00
|
|
|
weak = ["rlibc/weak"]
|
2016-09-17 04:53:14 +08:00
|
|
|
|
|
|
|
[workspace]
|