Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "testcrate"
  3. version = "0.1.0"
  4. authors = ["Alex Crichton <[email protected]>"]
  5. edition = "2018"
  6. [lib]
  7. test = false
  8. doctest = false
  9. [dependencies]
  10. # For fuzzing tests we want a deterministic seedable RNG. We also eliminate potential
  11. # problems with system RNGs on the variety of platforms this crate is tested on.
  12. # `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.
  13. rand_xoshiro = "0.6"
  14. [dependencies.compiler_builtins]
  15. path = ".."
  16. default-features = false
  17. features = ["no-lang-items", "public-test-deps"]
  18. [target.'cfg(all(target_arch = "arm", not(any(target_env = "gnu", target_env = "musl")), target_os = "linux"))'.dev-dependencies]
  19. test = { git = "https://github.com/japaric/utest" }
  20. utest-cortex-m-qemu = { default-features = false, git = "https://github.com/japaric/utest" }
  21. utest-macros = { git = "https://github.com/japaric/utest" }
  22. [features]
  23. default = ["mangled-names"]
  24. c = ["compiler_builtins/c"]
  25. no-asm = ["compiler_builtins/no-asm"]
  26. mem = ["compiler_builtins/mem"]
  27. mangled-names = ["compiler_builtins/mangled-names"]