Cargo.toml 497 B

123456789101112131415161718192021
  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.gcc]
  7. optional = true
  8. version = "0.3.36"
  9. [features]
  10. # Build the missing intrinsics from compiler-rt C source code
  11. c = ["gcc"]
  12. # Mark this crate as the #![compiler_builtins] crate
  13. compiler-builtins = []
  14. default = ["compiler-builtins"]
  15. # Include implementations of memory operations like memcpy
  16. mem = []
  17. rustbuild = ["compiler-builtins"]
  18. [workspace]