Cargo.toml 394 B

12345678910111213141516171819202122
  1. [package]
  2. authors = ["Jorge Aparicio <japaricious@gmail.com>"]
  3. build = "build.rs"
  4. name = "rustc_builtins"
  5. version = "0.1.0"
  6. [dependencies]
  7. [dependencies.rlibc]
  8. git = "https://github.com/alexcrichton/rlibc"
  9. optional = true
  10. [dev-dependencies]
  11. quickcheck = "0.3.1"
  12. rand = "0.3.14"
  13. gcc_s = { path = "gcc_s" }
  14. compiler-rt = { path = "compiler-rt" }
  15. [features]
  16. weak = ["rlibc/weak"]
  17. [workspace]