Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. [build-dependencies]
  10. rand = "0.7"
  11. [dependencies]
  12. # For fuzzing tests we want a deterministic seedable RNG. We also eliminate potential
  13. # problems with system RNGs on the variety of platforms this crate is tested on.
  14. # `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.
  15. rand_xoshiro = "0.4"
  16. [dependencies.compiler_builtins]
  17. path = ".."
  18. default-features = false
  19. features = ["no-lang-items"]
  20. [target.'cfg(all(target_arch = "arm", not(any(target_env = "gnu", target_env = "musl")), target_os = "linux"))'.dev-dependencies]
  21. test = { git = "https://github.com/japaric/utest" }
  22. utest-cortex-m-qemu = { default-features = false, git = "https://github.com/japaric/utest" }
  23. utest-macros = { git = "https://github.com/japaric/utest" }
  24. [features]
  25. default = ["mangled-names"]
  26. c = ["compiler_builtins/c"]
  27. no-asm = ["compiler_builtins/no-asm"]
  28. mem = ["compiler_builtins/mem"]
  29. mangled-names = ["compiler_builtins/mangled-names"]