Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the patch-updates group across 1 directory with 45 updates #578

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

Bumps the patch-updates group with 22 updates in the /rust directory:

Package From To
serde_json 1.0.134 1.0.138
wasmtime 28.0.0 28.0.1
rand 0.8.5 0.9.0
async-trait 0.1.83 0.1.86
bytes 1.9.0 1.10.0
bumpalo 3.16.0 3.17.0
cc 1.2.6 1.2.11
indexmap 2.7.0 2.7.1
ipnet 2.10.1 2.11.0
linux-raw-sys 0.4.14 0.4.15
log 0.4.22 0.4.25
miniz_oxide 0.8.2 0.8.3
pin-project-lite 0.2.15 0.2.16
proc-macro2 1.0.92 1.0.93
rustix 0.38.42 0.38.44
ryu 1.0.18 1.0.19
semver 1.0.24 1.0.25
syn 2.0.94 2.0.98
tempfile 3.14.0 3.16.0
tokio 1.42.0 1.43.0
unicode-ident 1.0.14 1.0.16
valuable 0.1.0 0.1.1

Updates serde_json from 1.0.134 to 1.0.138

Release notes

Sourced from serde_json's releases.

v1.0.138

  • Documentation improvements

v1.0.137

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#1231)

v1.0.136

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#1230, thanks @​goffrie)

v1.0.135

Commits
  • c916099 Release 1.0.138
  • dc29e48 Move BufReader to caller
  • 29122f9 Sort imports from PR 1237
  • d33c1b5 Merge pull request #1237 from JonathanBrouwer/master
  • 8c2d800 Add more warnings to apply buffering on docs of affected functions
  • 65bbd1a Fix example of from_reader not applying buffering when it should
  • 87f78da More precise gitignore patterns
  • 4134f11 Remove *.sw[po] from gitignore
  • c7626db Remove **/*.rs.bk from project-specific gitignore
  • eb49e28 Release 1.0.137
  • Additional commits viewable in compare view

Updates wasmtime from 28.0.0 to 28.0.1

Release notes

Sourced from wasmtime's releases.

v28.0.1

28.0.1

Released 2025-01-14.

Fixed

  • Fixed deallocating async stacks when using Store::into_data. #10009
Changelog

Sourced from wasmtime's changelog.

28.0.1

Released 2025-01-14.

Fixed

  • Fixed deallocating async stacks when using Store::into_data. #10009

Commits

Updates rand from 0.8.5 to 0.9.0

Changelog

Sourced from rand's changelog.

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

... (truncated)

Commits

Updates async-trait from 0.1.83 to 0.1.86

Release notes

Sourced from async-trait's releases.

0.1.86

  • Documentation improvements

0.1.85

  • Omit Self: 'async_trait bound in impl when not needed by signature (#284)

0.1.84

  • Support impl Trait in return type (#282)
Commits
  • 46a70c0 Release 0.1.86
  • 0e43f29 Merge pull request #286 from dtolnay/dyncomp
  • c49cbcb Update 'object safe' -> 'dyn compatible' naming in tests
  • 87316f9 Merge pull request #285 from dtolnay/dyncomp
  • eb69fb3 Delete section on dyn compatibility of default implementations
  • ec9665a Update example error message in docs
  • f1b4d3c Update ui test suite to nightly-2025-02-01
  • b33a4b2 More precise gitignore patterns
  • 9d09210 Remove **/*.rs.bk from project-specific gitignore
  • 3f11674 Update ui test suite to nightly-2025-01-23
  • Additional commits viewable in compare view

Updates bytes from 1.9.0 to 1.10.0

Release notes

Sourced from bytes's releases.

Bytes v1.10.0

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Changelog

Sourced from bytes's changelog.

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Commits
  • e0f3a25 chore: prepare bytes v1.10.0 (#766)
  • 16fd473 Add feature to support platforms without atomic CAS (#467)
  • 71824b0 ci: test AArch64 and run tests instead of build in cross job (#763)
  • 7a87660 Use [lints] to address unexpected_cfgs lint (#762)
  • 3ab876f Try get methods for Buf trait (#753)
  • a1b1208 Disable test_bytes_vec_alloc test on miri (#755)
  • aae4969 Add specialized Buf::chunks_vectored for Take (#617)
  • 103d7bf Remove incorrect guarantee for chunks_vectored (#754)
  • 16cc574 Implement Buf::chunks_vectored for VecDeque\<u8> (#708)
  • 0e9e4fc Expand Buf tests (#747)
  • Additional commits viewable in compare view

Updates bumpalo from 3.16.0 to 3.17.0

Changelog

Sourced from bumpalo's changelog.

3.17.0

Released 2025-01-28.

Added

  • Added a bunch of try_ allocation methods for slices and str:
    • try_alloc_slice_fill_default
    • try_alloc_slice_fill_iter
    • try_alloc_slice_fill_clone
    • try_alloc_slice_fill_copy
    • try_alloc_slice_fill_with
    • try_alloc_str
    • try_alloc_slice_clone
    • try_alloc_slice_copy

Changed

  • Minimum supported Rust version reduced to 1.71.1

Fixed

  • Fixed a stacked-borrows MIRI bug in dealloc

Commits

Updates cc from 1.2.6 to 1.2.11

Release notes

Sourced from cc's releases.

cc-v1.2.11

Other

  • Fix more flag inheritance (#1380)
  • Include wrapper args. in stdout family heuristics to restore classifying clang --driver-mode=cl as Msvc { clang_cl: true } (#1378)
  • Constrain -Clto and -Cembed-bitcode flag inheritance to be clang-only (#1379)
  • Pass deployment target with -m*-version-min= (#1339)
  • Regenerate target info (#1376)

cc-v1.2.10

Other

  • Fix CC_FORCE_DISABLE=0 evaluating to true (#1371)
  • Regenerate target info (#1369)
  • Make hidden lifetimes explicit. (#1366)

cc-v1.2.9

Other

  • Don't pass inherited PGO flags to GNU compilers (#1363)
  • Adjusted zig cc judgment and avoided zigbuild errors(#1360) (#1361)
  • Fix compilation on macOS using clang and fix compilation using zig-cc (#1364)

cc-v1.2.8

Other

  • Add is_like_clang_cl() getter (#1357)
  • Fix clippy error in lib.rs (#1356)
  • Regenerate target info (#1352)
  • Fix compiler family detection issue with clang-cl on macOS (#1328)
  • Update windows-bindgen dependency (#1347)
  • Fix clippy warnings (#1346)

cc-v1.2.7

Other

  • Regenerate target info (#1342)
  • Document new supported architecture names in windows::find
  • Make is_flag_supported_inner take an &Tool (#1337)
  • Fix is_flag_supported on msvc (#1336)
  • Allow using Visual Studio target names in find_tool (#1335)
Changelog

Sourced from cc's changelog.

1.2.11 - 2025-01-31

Other

  • Fix more flag inheritance (#1380)
  • Include wrapper args. in stdout family heuristics to restore classifying clang --driver-mode=cl as Msvc { clang_cl: true } (#1378)
  • Constrain -Clto and -Cembed-bitcode flag inheritance to be clang-only (#1379)
  • Pass deployment target with -m*-version-min= (#1339)
  • Regenerate target info (#1376)

1.2.10 - 2025-01-17

Other

  • Fix CC_FORCE_DISABLE=0 evaluating to true (#1371)
  • Regenerate target info (#1369)
  • Make hidden lifetimes explicit. (#1366)

1.2.9 - 2025-01-12

Other

  • Don't pass inherited PGO flags to GNU compilers (#1363)
  • Adjusted zig cc judgment and avoided zigbuild errors(#1360) (#1361)
  • Fix compilation on macOS using clang and fix compilation using zig-cc (#1364)

1.2.8 - 2025-01-11

Other

  • Add is_like_clang_cl() getter (#1357)
  • Fix clippy error in lib.rs (#1356)
  • Regenerate target info (#1352)
  • Fix compiler family detection issue with clang-cl on macOS (#1328)
  • Update windows-bindgen dependency (#1347)
  • Fix clippy warnings (#1346)

1.2.7 - 2025-01-03

Other

  • Regenerate target info (#1342)
  • Document new supported architecture names in windows::find
  • Make is_flag_supported_inner take an &Tool (#1337)
  • Fix is_flag_supported on msvc (#1336)
  • Allow using Visual Studio target names in find_tool (#1335)
Commits

Updates cranelift-bforest from 0.115.0 to 0.115.1

Commits

Updates cranelift-bitset from 0.115.0 to 0.115.1

Commits

Updates cranelift-codegen from 0.115.0 to 0.115.1

Commits

Updates cranelift-codegen-meta from 0.115.0 to 0.115.1

Commits

Updates cranelift-codegen-shared from 0.115.0 to 0.115.1

Commits

Updates cranelift-control from 0.115.0 to 0.115.1

Commits

Updates cranelift-entity from 0.115.0 to 0.115.1

Commits

Updates cranelift-frontend from 0.115.0 to 0.115.1

Commits

Updates cranelift-isle from 0.115.0 to 0.115.1

Commits

Updates cranelift-native from 0.115.0 to 0.115.1

Commits

Updates indexmap from 2.7.0 to 2.7.1

Changelog

Sourced from indexmap's changelog.

2.7.1 (2025-01-19)

  • Added #[track_caller] to functions that may panic.
  • Improved memory reservation for insert_entry.
Commits
  • 42e57a3 Merge pull request #369 from cuviper/release-2.7.1
  • f61b581 Release 2.7.1
  • cb520a7 Merge pull request #368 from cuviper/reserve_entries
  • f0ec924 Merge pull request #367 from savannstm/better-panics
  • 38ef618 Merge pull request #364 from hkBst/patch-1
  • 1f12721 Improve memory reservation for insert_entry
  • 2f55755 Improve panic messages
  • 7b64edc Add #[track_caller] attributes to functions that may panic
  • f63bb6e remove fxhash dep
  • 8eb4de5 Remove fxhash example from lib.rs
  • Additional commits viewable in compare view

Updates ipnet from 2.10.1 to 2.11.0

Release notes

Sourced from ipnet's releases.

Remove nightly features for no_std

  • Remove nightly features for no_std #58
Changelog

Sourced from ipnet's changelog.

Version 2.11.0

  • Remove nightly features for no_std #58
Commits

Updates linux-raw-sys from 0.4.14 to 0.4.15

Commits

Updates log from 0.4.22 to 0.4.25

Release notes

Sourced from log's releases.

0.4.25

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

0.4.24 (yanked)

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

0.4.23 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Changelog

Sourced from log's changelog.

[0.4.25] - 2025-01-14

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

[0.4.24] - 2025-01-11

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

[0.4.23] - 2025-01-10 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Commits
  • 22be810 Merge pull request #663 from rust-lang/cargo/0.4.25
  • 0279730 prepare for 0.4.25 release
  • 4099bcb Merge pull request #662 from rust-lang/fix/cargo-features
  • 36e7e3f revert loosening of kv cargo features
  • 2282191 Merge pull request #660 from rust-lang/cargo/0.4.24
  • 2994f0a prepare for 0.4.24 release
  • 5fcb50e Merge pull request #659 from rust-lang/fix/feature-builds
  • 29fe9e6 fix up feature activation
  • b1824f2 use cargo hack in CI to test all feature combinations
  • e6b643d Merge pull request #656 from rust-lang/cargo/0.4.23
  • Additional commits viewable in compare view

Updates miniz_oxide from 0.8.2 to 0.8.3

Changelog

Sourced from miniz_oxide's changelog.

0.8.3 - 2025-01-13

Bug Fixes

  • (bench) add some basic criterion benchmarks - (ac03751) - oyvindln
  • (deflate) write directly to output buffer instaed of bit buffer to reduce overhead and improve performance of stored blocks a little - (97ee3f1) - oyvindln
  • (deflate) split some code into new module and fix panic in pad_to_bytes from prev commit - (04973ca) - oyvindln
  • (deflate) move stored level to it's own function and simplify to improve performance - (1f829d2) - oyvindln
  • (deflate) remove no longer needed checks for raw mode in compress_normal and commend out accidentally enabled criterion dev dep - (f357aa1) - oyvindln
  • (miniz_oxide) add richgel99 (original miniz author) as author and add copyright info from orig miniz in license files - (c8a4485) - oyvindln

Commits
  • c0ce0fd bump changelog and version
  • f357aa1 fix(deflate): remove no longer needed checks for raw mode in compress_normal ...
  • 1f829d2 fix(deflate): move stored level to it's own function and simplify to improve ...
  • 04973ca fix(deflate): split some code into new module and fix panic in pad_to_bytes f...
  • 97ee3f1 fix(deflate): write directly to output buffer instaed of bit buffer to reduce...
  • c8a4485 fix(miniz_oxide): add richgel99 (original miniz author) as author and add cop...
  • ac03751 fix(bench): add some basic criterion benchmarks
  • See full diff in compare view

Updates pin-project-lite from 0.2.15 to 0.2.16

Release notes

Sourced from pin-project-lite's releases.

0.2.16

  • Suppress clippy::absolute_paths, clippy::min_ident_chars, and clippy::single_char_lifetime_names lints in generated code.
Changelog

Sourced from pin-project-lite's changelog.

[0.2.16] - 2025-01-06

  • Suppress clippy::absolute_paths, clippy::min_ident_chars, and clippy::single_char_lifetime_names lints in generated code.
Commits

Updates proc-macro2 from 1.0.92 to 1.0.93

Release notes

Sourced from proc-macro2's releases.

1.0.93

Commits
  • 83519e8 Release 1.0.93
  • 87e04d2 Merge pull request #490 from dtolnay/fastdrop
  • 029360d Drop tokens in order instead of reversed order
  • 172907a Non-recursively drop TokenStream relocating only streams, not tokens
  • See full diff in compare view
  • ...

    Description has been truncated

Bumps the patch-updates group with 22 updates in the /rust directory:

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.134` | `1.0.138` |
| [wasmtime](https://github.com/bytecodealliance/wasmtime) | `28.0.0` | `28.0.1` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.83` | `0.1.86` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.9.0` | `1.10.0` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.16.0` | `3.17.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.6` | `1.2.11` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.7.0` | `2.7.1` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.10.1` | `2.11.0` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.14` | `0.4.15` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.8.2` | `0.8.3` |
| [pin-project-lite](https://github.com/taiki-e/pin-project-lite) | `0.2.15` | `0.2.16` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.92` | `1.0.93` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.42` | `0.38.44` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.18` | `1.0.19` |
| [semver](https://github.com/dtolnay/semver) | `1.0.24` | `1.0.25` |
| [syn](https://github.com/dtolnay/syn) | `2.0.94` | `2.0.98` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.14.0` | `3.16.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.43.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.14` | `1.0.16` |
| [valuable](https://github.com/tokio-rs/valuable) | `0.1.0` | `0.1.1` |



Updates `serde_json` from 1.0.134 to 1.0.138
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.134...v1.0.138)

Updates `wasmtime` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `rand` from 0.8.5 to 0.9.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.9.0)

Updates `async-trait` from 0.1.83 to 0.1.86
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.83...0.1.86)

Updates `bytes` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.9.0...v1.10.0)

Updates `bumpalo` from 3.16.0 to 3.17.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.16.0...3.17.0)

Updates `cc` from 1.2.6 to 1.2.11
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.6...cc-v1.2.11)

Updates `cranelift-bforest` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-bitset` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-codegen` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-codegen-meta` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-codegen-shared` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-control` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-entity` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-frontend` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-isle` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `cranelift-native` from 0.115.0 to 0.115.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/contributing-release-process.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/commits)

Updates `indexmap` from 2.7.0 to 2.7.1
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.7.0...2.7.1)

Updates `ipnet` from 2.10.1 to 2.11.0
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits/2.11.0)

Updates `linux-raw-sys` from 0.4.14 to 0.4.15
- [Commits](sunfishcode/linux-raw-sys@v0.4.14...v0.4.15)

Updates `log` from 0.4.22 to 0.4.25
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.22...0.4.25)

Updates `miniz_oxide` from 0.8.2 to 0.8.3
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.8.2...0.8.3)

Updates `pin-project-lite` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/taiki-e/pin-project-lite/releases)
- [Changelog](https://github.com/taiki-e/pin-project-lite/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project-lite@v0.2.15...v0.2.16)

Updates `proc-macro2` from 1.0.92 to 1.0.93
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.92...1.0.93)

Updates `pulley-interpreter` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `rustix` from 0.38.42 to 0.38.44
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.42...v0.38.44)

Updates `ryu` from 1.0.18 to 1.0.19
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.18...1.0.19)

Updates `semver` from 1.0.24 to 1.0.25
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.24...1.0.25)

Updates `syn` from 2.0.94 to 2.0.98
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.94...2.0.98)

Updates `tempfile` from 3.14.0 to 3.16.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.14.0...v3.16.0)

Updates `tokio` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.42.0...tokio-1.43.0)

Updates `unicode-ident` from 1.0.14 to 1.0.16
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.14...1.0.16)

Updates `valuable` from 0.1.0 to 0.1.1
- [Release notes](https://github.com/tokio-rs/valuable/releases)
- [Changelog](https://github.com/tokio-rs/valuable/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/valuable@v0.1.0...v0.1.1)

Updates `wasmtime-asm-macros` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-component-macro` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-component-util` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-cranelift` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-environ` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-fiber` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-jit-icache-coherence` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-slab` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-versioned-export-macros` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-winch` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `wasmtime-wit-bindgen` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

Updates `winch-codegen` from 28.0.0 to 28.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v28.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v28.0.0...v28.0.1)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: rand
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: bumpalo
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-bforest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-bitset
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-codegen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-codegen-meta
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-codegen-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-control
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-entity
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-frontend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-isle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cranelift-native
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ipnet
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: log
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: pin-project-lite
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: pulley-interpreter
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tempfile
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: tokio
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: valuable
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-asm-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-component-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-component-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-cranelift
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-environ
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-fiber
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-jit-icache-coherence
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-slab
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-versioned-export-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-winch
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasmtime-wit-bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: winch-codegen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust labels Feb 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 10, 2025
@dependabot dependabot bot deleted the dependabot/cargo/rust/patch-updates-be509c060d branch February 10, 2025 22:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants