diff options
| author | Ralf Jung <post@ralfj.de> | 2024-03-25 14:23:42 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-03-25 14:23:42 +0100 |
| commit | 8afc4862d0d2b968a0f023d88eb81eef6a3701aa (patch) | |
| tree | b59a5d2d184bb0cd0e48e2e94e4c0fd925524500 /src | |
| parent | dcddf24626c0d5d7d87a3c4922dbfa296b0e869f (diff) | |
| download | rust-8afc4862d0d2b968a0f023d88eb81eef6a3701aa.tar.gz rust-8afc4862d0d2b968a0f023d88eb81eef6a3701aa.zip | |
test-cargo-miri: test anyhow
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/miri/test-cargo-miri/Cargo.lock | 7 | ||||
| -rw-r--r-- | src/tools/miri/test-cargo-miri/Cargo.toml | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/tools/miri/test-cargo-miri/Cargo.lock b/src/tools/miri/test-cargo-miri/Cargo.lock index d5e57a66a8d..f75d68f4e29 100644 --- a/src/tools/miri/test-cargo-miri/Cargo.lock +++ b/src/tools/miri/test-cargo-miri/Cargo.lock @@ -3,6 +3,12 @@ version = 3 [[package]] +name = "anyhow" +version = "1.0.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" + +[[package]] name = "autocfg" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -24,6 +30,7 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" name = "cargo-miri-test" version = "0.1.0" dependencies = [ + "anyhow", "autocfg", "byteorder 0.5.3", "byteorder 1.4.3", diff --git a/src/tools/miri/test-cargo-miri/Cargo.toml b/src/tools/miri/test-cargo-miri/Cargo.toml index 1688096fd9a..58c451741bb 100644 --- a/src/tools/miri/test-cargo-miri/Cargo.toml +++ b/src/tools/miri/test-cargo-miri/Cargo.toml @@ -22,6 +22,9 @@ issue_rust_86261 = { path = "issue-rust-86261" } byteorder_2 = { package = "byteorder", version = "0.5" } # to test dev-dependencies behave as expected, with renaming # Not actually used, but exercises some unique code path (`--extern` .so file). serde_derive = "1.0.185" +# Not actually used, but uses a custom build probe so let's make sure that works. +# (Ideally we'd check if the probe was successful, but that's not easily possible.) +anyhow = "1.0" [build-dependencies] autocfg = "1" |
