Cargo.toml 539 B

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