Cargo.toml 611 B

123456789101112131415161718192021222324252627
  1. [package]
  2. authors = ["Jorge Aparicio <japaricious@gmail.com>"]
  3. build = "build.rs"
  4. name = "compiler_builtins"
  5. version = "0.1.0"
  6. [build-dependencies]
  7. rustc-cfg = "0.2.0"
  8. gcc = "0.3.36"
  9. [dev-dependencies]
  10. quickcheck = "0.3.1"
  11. rand = "0.3.14"
  12. gcc_s = { path = "gcc_s" }
  13. compiler-rt = { path = "compiler-rt" }
  14. [features]
  15. # Build the missing intrinsics from compiler-rt C source code
  16. c = []
  17. # Mark this crate as the #![compiler_builtins] crate
  18. compiler-builtins = []
  19. default = ["compiler-builtins"]
  20. # Include implementations of memory operations like memcpy
  21. mem = []
  22. rustbuild = ["compiler-builtins"]
  23. [workspace]