]> 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 c7fc62b79e840d8ad2cd7aa69e58d12892d73072..cf557bd60ef39643d652d8239258f2c4a4227c5d 100644 (file)
@@ -1,11 +1,30 @@
+[workspace]
+members = ["subcrate", "issue-1567", "exported-symbol-dep"]
+
 [package]
 name = "cargo-miri-test"
 version = "0.1.0"
-authors = ["Oliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>"]
+authors = ["Miri Team"]
 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