]> git.lizzy.rs Git - rust.git/blob - test-cargo-miri/Cargo.toml
Auto merge of #1776 - hyd-dev:1170, r=RalfJung
[rust.git] / test-cargo-miri / Cargo.toml
1 [workspace]
2 members = ["subcrate", "issue-1567", "exported-symbol-dep"]
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 exported_symbol = { path = "exported-symbol" }
14 issue_1567 = { path = "issue-1567" }
15 issue_1691 = { path = "issue-1691" }
16 issue_1705 = { path = "issue-1705" }
17 issue_1760 = { path = "issue-1760" }
18
19 [dev-dependencies]
20 rand = { version = "0.8", features = ["small_rng"] }
21 getrandom_1 = { package = "getrandom", version = "0.1" }
22 getrandom_2 = { package = "getrandom", version = "0.2" }
23 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
24
25 [lib]
26 test = false # test that this is respected (will show in the output)
27
28 [[test]]
29 name = "main"
30 harness = false