rust/test-cargo-miri/Cargo.toml

33 lines
864 B
TOML
Raw Normal View History

[workspace]
2021-04-15 16:19:23 -05:00
members = ["subcrate", "issue-1567", "exported-symbol-dep"]
[package]
name = "cargo-miri-test"
version = "0.1.0"
authors = ["Miri Team"]
edition = "2018"
[dependencies]
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" }
issue_1567 = { path = "issue-1567" }
issue_1691 = { path = "issue-1691" }
issue_1705 = { path = "issue-1705" }
issue_1760 = { path = "issue-1760" }
issue_rust_86261 = { path = "issue-rust-86261" }
2019-02-07 06:00:42 -06:00
[dev-dependencies]
byteorder_2 = { package = "byteorder", version = "0.5" } # to test dev-dependencies behave as expected, with renaming
serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
[build-dependencies]
autocfg = "1"
[lib]
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