Cargo.toml 662 B

123456789101112131415161718192021222324252627282930
  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.3.0"
  8. [build-dependencies.gcc]
  9. optional = true
  10. version = "0.3.36"
  11. [dev-dependencies]
  12. quickcheck = "0.3.1"
  13. rand = "0.3.14"
  14. gcc_s = { path = "gcc_s" }
  15. compiler-rt = { path = "compiler-rt" }
  16. [features]
  17. # Build the missing intrinsics from compiler-rt C source code
  18. c = ["gcc"]
  19. # Mark this crate as the #![compiler_builtins] crate
  20. compiler-builtins = []
  21. default = ["compiler-builtins"]
  22. # Include implementations of memory operations like memcpy
  23. mem = []
  24. rustbuild = ["compiler-builtins"]
  25. [workspace]