diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2025-06-11 21:12:45 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2025-06-11 21:12:45 -0400 |
| commit | 24fd5b40870a52c703e99aceb571c78f0905fcbf (patch) | |
| tree | eae89223534b91e7f9d1df688ab5b93bbcadc356 | |
| parent | 9a495acf88c8a66eb9916508f8dc6ba103e123c1 (diff) | |
| download | rust-24fd5b40870a52c703e99aceb571c78f0905fcbf.tar.gz rust-24fd5b40870a52c703e99aceb571c78f0905fcbf.zip | |
Cargo wants wasmparser in different order
It's not clear to me how we ended up with the other order here -- hopefully this isn't an indicator of some form of instability in Cargo? But either order is fine...
| -rw-r--r-- | Cargo.lock | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3cbae3266bf..21ec1fbaae8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5945,22 +5945,22 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.233.0" +version = "0.232.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b51cb03afce7964bbfce46602d6cb358726f36430b6ba084ac6020d8ce5bc102" +checksum = "917739b33bb1eb0e9a49bcd2637a351931be4578d0cc4d37b908d7a797784fbb" dependencies = [ "bitflags", - "indexmap", - "semver", ] [[package]] name = "wasmparser" -version = "0.232.0" +version = "0.233.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "917739b33bb1eb0e9a49bcd2637a351931be4578d0cc4d37b908d7a797784fbb" +checksum = "b51cb03afce7964bbfce46602d6cb358726f36430b6ba084ac6020d8ce5bc102" dependencies = [ "bitflags", + "indexmap", + "semver", ] [[package]] |
