Cargo.toml 775 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "testcrate"
  3. version = "0.1.0"
  4. authors = ["Alex Crichton <alex@alexcrichton.com>"]
  5. edition = "2018"
  6. [lib]
  7. test = false
  8. doctest = false
  9. [build-dependencies]
  10. rand = "0.7"
  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"]