]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/test_dependencies/Cargo.toml
Auto merge of #2687 - RalfJung:getrandom, r=RalfJung
[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 tokio = { version = "1.0", features = ["full"] }
13 libc = "0.2"
14 page_size = "0.5"
15 num_cpus = "1.10.1"
16
17 getrandom_1 = { package = "getrandom", version = "0.1" }
18 getrandom = { version = "0.2" }
19 rand = { version = "0.8", features = ["small_rng"] }
20
21 [workspace]