]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/test-cargo-miri/Cargo.toml
refactor try_resolve_did and also support resolving crates/modules
[rust.git] / src / tools / miri / test-cargo-miri / Cargo.toml
1 [workspace]
2 members = ["subcrate", "issue-1567", "exported-symbol-dep"]
3 exclude = ["no-std-smoke"] # it wants to be panic="abort"
4
5 [package]
6 name = "cargo-miri-test"
7 version = "0.1.0"
8 authors = ["Miri Team"]
9 edition = "2018"
10
11 [dependencies]
12 byteorder = "1.0"
13 cdylib = { path = "cdylib" }
14 exported_symbol = { path = "exported-symbol" }
15 issue_1567 = { path = "issue-1567" }
16 issue_1691 = { path = "issue-1691" }
17 issue_1705 = { path = "issue-1705" }
18 issue_1760 = { path = "issue-1760" }
19 issue_rust_86261 = { path = "issue-rust-86261" }
20
21 [dev-dependencies]
22 byteorder_2 = { package = "byteorder", version = "0.5" } # to test dev-dependencies behave as expected, with renaming
23 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
24
25 [build-dependencies]
26 autocfg = "1"
27
28 [lib]
29 test = false # test that this is respected (will show in the output)
30
31 [[test]]
32 name = "main"
33 harness = false