]> git.lizzy.rs Git - rust.git/blob - test-cargo-miri/Cargo.toml
Auto merge of #1764 - RalfJung:readme, r=RalfJung
[rust.git] / test-cargo-miri / Cargo.toml
1 [workspace]
2 members = ["subcrate", "issue-1567"]
3
4 [package]
5 name = "cargo-miri-test"
6 version = "0.1.0"
7 authors = ["Miri Team"]
8 edition = "2018"
9
10 [dependencies]
11 byteorder = "1.0"
12 cdylib = { path = "cdylib" }
13 issue_1567 = { path = "issue-1567" }
14 issue_1691 = { path = "issue-1691" }
15 issue_1705 = { path = "issue-1705" }
16 issue_1760 = { path = "issue-1760" }
17
18 [dev-dependencies]
19 rand = { version = "0.8", features = ["small_rng"] }
20 getrandom_1 = { package = "getrandom", version = "0.1" }
21 getrandom_2 = { package = "getrandom", version = "0.2" }
22 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
23
24 [lib]
25 test = false # test that this is respected (will show in the output)