Cargo.toml 520 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. authors = ["Jorge Aparicio <japaricious@gmail.com>"]
  3. build = "build.rs"
  4. name = "rustc_builtins"
  5. version = "0.1.0"
  6. [build-dependencies]
  7. gcc = "0.3.35"
  8. rustc-cfg = "0.2.0"
  9. [dependencies]
  10. [dependencies.rlibc]
  11. git = "https://github.com/alexcrichton/rlibc"
  12. optional = true
  13. [dev-dependencies]
  14. quickcheck = "0.3.1"
  15. rand = "0.3.14"
  16. gcc_s = { path = "gcc_s" }
  17. compiler-rt = { path = "compiler-rt" }
  18. [features]
  19. # Build the missing intrinsics from compiler-rt C source code
  20. c = []
  21. weak = ["rlibc/weak"]
  22. [workspace]