]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/test-cargo-miri/Cargo.toml
Rollup merge of #104641 - tshepang:grammar, r=Mark-Simulacrum
[rust.git] / src / tools / miri / 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 issue_rust_86261 = { path = "issue-rust-86261" }
19
20 [dev-dependencies]
21 byteorder_2 = { package = "byteorder", version = "0.5" } # to test dev-dependencies behave as expected, with renaming
22 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
23
24 [build-dependencies]
25 autocfg = "1"
26
27 [lib]
28 test = false # test that this is respected (will show in the output)
29
30 [[test]]
31 name = "main"
32 harness = false