]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/test_dependencies/Cargo.toml
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / src / tools / miri / test_dependencies / Cargo.toml
1 [package]
2 authors = ["Miri Team"]
3 description = "dependencies that unit tests can have"
4 license = "MIT OR Apache-2.0"
5 name = "miri-test-deps"
6 repository = "https://github.com/rust-lang/miri"
7 version = "0.1.0"
8 edition = "2021"
9
10 [dependencies]
11 # all dependencies (and their transitive ones) listed here can be used in `tests/`.
12 libc = "0.2"
13 num_cpus = "1.10.1"
14
15 getrandom_1 = { package = "getrandom", version = "0.1" }
16 getrandom = { version = "0.2", features = ["js"] }
17 rand = { version = "0.8", features = ["small_rng"] }
18
19 [target.'cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))'.dependencies]
20 page_size = "0.5"
21 tokio = { version = "1.23", features = ["full"] }
22
23 [workspace]