]> git.lizzy.rs Git - rust.git/blobdiff - test-cargo-miri/Cargo.toml
Don't `unwrap()` in `in_std()`
[rust.git] / test-cargo-miri / Cargo.toml
index 54a03f5f5ded1edecee4b0ba6e62e68bc751f0bc..cf557bd60ef39643d652d8239258f2c4a4227c5d 100644 (file)
@@ -1,5 +1,5 @@
 [workspace]
-members = ["subcrate"]
+members = ["subcrate", "issue-1567", "exported-symbol-dep"]
 
 [package]
 name = "cargo-miri-test"
@@ -9,10 +9,22 @@ edition = "2018"
 
 [dependencies]
 byteorder = "1.0"
+cdylib = { path = "cdylib" }
+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" }
 
 [dev-dependencies]
-rand = { version = "0.7", features = ["small_rng"] }
+rand = { version = "0.8", features = ["small_rng"] }
+getrandom_1 = { package = "getrandom", version = "0.1" }
+getrandom_2 = { package = "getrandom", version = "0.2" }
 serde_derive = "1.0" # not actually used, but exercises some unique code path (`--extern` .so file)
 
 [lib]
 test = false # test that this is respected (will show in the output)
+
+[[test]]
+name = "main"
+harness = false