Cargo.toml 851 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "testcrate"
  3. version = "0.1.0"
  4. authors = ["Alex Crichton <alex@alexcrichton.com>"]
  5. [lib]
  6. test = false
  7. doctest = false
  8. [build-dependencies]
  9. cast = { version = "0.2.2", features = ["x128"] }
  10. rand = { version = "0.4", features = ["i128_support"] }
  11. [dependencies.compiler_builtins]
  12. path = ".."
  13. default-features = false
  14. features = ["no-lang-items"]
  15. [target.'cfg(all(target_arch = "arm", not(any(target_env = "gnu", target_env = "musl")), target_os = "linux"))'.dev-dependencies]
  16. test = { git = "https://github.com/japaric/utest" }
  17. utest-cortex-m-qemu = { default-features = false, git = "https://github.com/japaric/utest" }
  18. utest-macros = { git = "https://github.com/japaric/utest" }
  19. [features]
  20. c = ["compiler_builtins/c"]
  21. mem = ["compiler_builtins/mem"]
  22. mangled-names = ["compiler_builtins/mangled-names"]
  23. default = ["mangled-names"]