2020-09-12 06:33:30 -05:00
|
|
|
[workspace]
|
2021-04-15 16:19:23 -05:00
|
|
|
members = ["subcrate", "issue-1567", "exported-symbol-dep"]
|
2020-09-12 06:33:30 -05:00
|
|
|
|
2017-01-24 10:55:42 -06:00
|
|
|
[package]
|
|
|
|
name = "cargo-miri-test"
|
|
|
|
version = "0.1.0"
|
2020-09-12 06:33:30 -05:00
|
|
|
authors = ["Miri Team"]
|
2018-11-19 15:59:41 -06:00
|
|
|
edition = "2018"
|
2017-01-24 10:55:42 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-19 15:59:41 -06:00
|
|
|
byteorder = "1.0"
|
2021-02-14 09:33:24 -06:00
|
|
|
cdylib = { path = "cdylib" }
|
2021-04-15 16:19:23 -05:00
|
|
|
exported_symbol = { path = "exported-symbol" }
|
2021-02-14 05:08:47 -06:00
|
|
|
issue_1567 = { path = "issue-1567" }
|
|
|
|
issue_1691 = { path = "issue-1691" }
|
2021-02-14 04:12:33 -06:00
|
|
|
issue_1705 = { path = "issue-1705" }
|
2021-04-07 07:46:20 -05:00
|
|
|
issue_1760 = { path = "issue-1760" }
|
2021-06-13 10:30:08 -05:00
|
|
|
issue_rust_86261 = { path = "issue-rust-86261" }
|
2019-02-07 06:00:42 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-04-04 05:03:52 -05:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2021-04-04 08:35:19 -05:00
|
|
|
getrandom_1 = { package = "getrandom", version = "0.1" }
|
|
|
|
getrandom_2 = { package = "getrandom", version = "0.2" }
|
2020-09-21 08:47:09 -05:00
|
|
|
serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
|
2020-09-08 02:56:21 -05:00
|
|
|
|
|
|
|
[lib]
|
2020-09-11 08:05:05 -05:00
|
|
|
test = false # test that this is respected (will show in the output)
|
2021-04-30 05:50:40 -05:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "main"
|
|
|
|
harness = false
|