]> git.lizzy.rs Git - rust.git/blob - test-cargo-miri/Cargo.toml
Auto merge of #1755 - RalfJung:cargo-update, 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
17 [dev-dependencies]
18 rand = { version = "0.8", features = ["small_rng"] }
19 getrandom = { version = "0.2" }
20 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
21
22 [lib]
23 test = false # test that this is respected (will show in the output)