35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "testcrate"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[build-dependencies]
|
|
rand = "0.7"
|
|
|
|
[dev-dependencies]
|
|
# For fuzzing tests we want a deterministic seedable RNG. We also eliminate potential
|
|
# problems with system RNGs on the variety of platforms this crate is tested on.
|
|
# `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.
|
|
rand_xoshiro = "0.4"
|
|
|
|
[dependencies.compiler_builtins]
|
|
path = ".."
|
|
default-features = false
|
|
features = ["no-lang-items"]
|
|
|
|
[target.'cfg(all(target_arch = "arm", not(any(target_env = "gnu", target_env = "musl")), target_os = "linux"))'.dev-dependencies]
|
|
test = { git = "https://github.com/japaric/utest" }
|
|
utest-cortex-m-qemu = { default-features = false, git = "https://github.com/japaric/utest" }
|
|
utest-macros = { git = "https://github.com/japaric/utest" }
|
|
|
|
[features]
|
|
c = ["compiler_builtins/c"]
|
|
mem = ["compiler_builtins/mem"]
|
|
mangled-names = ["compiler_builtins/mangled-names"]
|
|
default = ["mangled-names"]
|