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 nonbreaking group with 23 updates #541

Merged
merged 2 commits into from
Oct 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 26, 2023

Bumps the nonbreaking group with 23 updates:

Package From To
anyhow 1.0.71 1.0.75
cc 1.0.73 1.0.83
bindgen 0.64.0 0.68.1
walkdir 2.3.2 2.4.0
tokio 1.26.0 1.33.0
bytes 1.1.0 1.5.0
futures-task 0.3.27 0.3.29
futures-core 0.3.27 0.3.29
mio 0.8.6 0.8.9
openssl-macros 0.1.0 0.1.1
serde 1.0.168 1.0.190
serde_bytes 0.11.7 0.11.12
rmp-serde 1.1.1 1.1.2
brotli 3.3.4 3.4.0
wasmprinter 0.2.45 0.2.70
swc_core 0.83.0 0.86.17
wit-parser 0.11.3 0.12.1
convert_case 0.4.0 0.6.0
uuid 1.4.1 1.5.0
criterion 0.3.6 0.5.1
num-format 0.4.3 0.4.4
tempfile 3.4.0 3.8.0
wasmparser 0.106.0 0.115.0

Updates anyhow from 1.0.71 to 1.0.75

Release notes

Sourced from anyhow's releases.

1.0.75

1.0.74

  • Add bootstrap workaround to allow rustc to depend on anyhow (#320, thanks @​RalfJung)

1.0.73

1.0.72

  • Documentation improvements
Commits
  • 6485cae Release 1.0.75
  • 238223a Work around ridiculous rust-analyzer behavior
  • cbade7d Release 1.0.74
  • 0798a9a Reword bootstrap comment
  • 61d8676 Merge pull request #320 from RalfJung/bootstrap
  • 663c663 don't run build probes in rustc bootstrap
  • e471b2b Release 1.0.73
  • 8cf1d15 Merge pull request #319 from dtolnay/errorprovide
  • 31c8dff Update to nightly's new Error::provide API
  • 496b958 Ignore ignored_unit_patterns pedantic clippy lint in test suite
  • Additional commits viewable in compare view

Updates cc from 1.0.73 to 1.0.83

Release notes

Sourced from cc's releases.

1.0.83

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.82...1.0.83

1.0.82

This release corrects a deadlock and potential performance regression present since 1.0.80, and contains no other changes. See rust-lang/cc-rs#849 for details.

1.0.81

This release exists to fix a bug introduced in 1.0.80 where we would panic if non-UTF8 were written to stderr by the C compiler. See rust-lang/cc-rs#842 and rust-lang/cc-rs#841 for more info.

1.0.80

What's Changed

... (truncated)

Commits

Updates bindgen from 0.64.0 to 0.68.1

Release notes

Sourced from bindgen's releases.

v0.68.1

Install bindgen-cli 0.68.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-lang/rust-bindgen/releases/download/v0.68.1/bindgen-cli-installer.sh | sh

Download bindgen-cli 0.68.1

File Platform Checksum
bindgen-cli-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
bindgen-cli-x86_64-apple-darwin.tar.xz macOS Intel checksum
bindgen-cli-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

v0.66.1

No release notes provided.

v0.66.0

See the changelog for further information.

Changelog

Sourced from bindgen's changelog.

0.68.1

Fixed

  • Fixed errors on the windows artifact build process.

0.68.0

Added

  • The system ABI is now supported as an option for the --override-abi flag.
  • The allowlist_item method and the --allowlist-item flag have been included to filter items regardless or their kind.
  • Include installers as release artifacts on Github.

Changed

  • The Clone implementation for _BindgenUnionField has been changed to pass the incorrect_clone_impl_on_copy_type Clippy lint.
  • The c_unwind ABI can be used without a feature gate for any Rust target version equal to or greater than 1.71. This comes as a result of the ABI being stabilised (in Rust 1.71).
  • Formatting changes when using prettyplease as a formatter due to a new prettyplease version.
  • Avoid generating invalid CStr constants when using the --generate-cstr option.

Removed

  • The extra_assert and extra_assert_eq macros are no longer exported.

Fixed

  • Bindgen no longer panics when parsing an objective-C header that includes a Rust keyword that cannot be a raw identifier, such as: self, crate, super or Self.

0.67.0

This version was skipped due to some problems on the release workflow.

0.66.1

Removed

  • Revert source order sorting (#2543) due to correctness regressions #2558.

0.66.0

Added

  • Added the --generate-cstr CLI flag to generate string constants as &CStr instead of &[u8]. (Requires Rust 1.59 or higher.)
  • Added the --generate-shell-completions CLI flag to generate completions for different shells.
  • The --wrap-static-fns option can now wrap va_list functions as variadic functions with the experimental ParseCallbacks::wrap_as_variadic_fn method.
  • Add target mappings for riscv32imc and riscv32imac.
  • Add the ParseCallbacks::field_visibility method to modify field visibility.

... (truncated)

Commits

Updates walkdir from 2.3.2 to 2.4.0

Commits

Updates tokio from 1.26.0 to 1.33.0

Release notes

Sourced from tokio's releases.

Tokio v1.33.0

1.33.0 (October 9, 2023)

Fixed

  • io: mark Interest::add with #[must_use] (#6037)
  • runtime: fix cache line size for RISC-V (#5994)
  • sync: prevent lock poisoning in watch::Receiver::wait_for (#6021)
  • task: fix spawn_local source location (#5984)

Changed

  • sync: use Acquire/Release orderings instead of SeqCst in watch (#6018)

Added

  • fs: add vectored writes to tokio::fs::File (#5958)
  • io: add Interest::remove method (#5906)
  • io: add vectored writes to DuplexStream (#5985)
  • net: add Apple tvOS support (#6045)
  • sync: add ?Sized bound to {MutexGuard,OwnedMutexGuard}::map (#5997)
  • sync: add watch::Receiver::mark_unseen (#5962, #6014, #6017)
  • sync: add watch::Sender::new (#5998)
  • sync: add const fn OnceCell::from_value (#5903)

Removed

  • remove unused stats feature (#5952)

Documented

  • add missing backticks in code examples (#5938, #6056)
  • fix typos (#5988, #6030)
  • process: document that Child::wait is cancel safe (#5977)
  • sync: add examples for Semaphore (#5939, #5956, #5978, #6031, #6032, #6050)
  • sync: document that broadcast capacity is a lower bound (#6042)
  • sync: document that const_new is not instrumented (#6002)
  • sync: improve cancel-safety documentation for mpsc::Sender::send (#5947)
  • sync: improve docs for watch channel (#5954)
  • taskdump: render taskdump documentation on docs.rs (#5972)

Unstable

  • taskdump: fix potential deadlock (#6036)

#5903: tokio-rs/tokio#5903 #5906: tokio-rs/tokio#5906 #5938: tokio-rs/tokio#5938 #5939: tokio-rs/tokio#5939 #5947: tokio-rs/tokio#5947

... (truncated)

Commits

Updates bytes from 1.1.0 to 1.5.0

Release notes

Sourced from bytes's releases.

Bytes v1.5.0

1.5.0 (September 7, 2023)

Added

  • Add UninitSlice::{new,uninit} (#598, #599)
  • Implement BufMut for &mut [MaybeUninit<u8>] (#597)

Changed

  • Mark BytesMut::extend_from_slice as inline (#595)

Bytes v1.4.0

1.4.0 (January 31, 2023)

Added

  • Make IntoIter constructor public (#581)

Fixed

  • Avoid large reallocations when freezing BytesMut (#592)

Documented

  • Document which functions require std (#591)
  • Fix duplicate "the the" typos (#585)

Bytes v1.3.0

1.3.0 (November 20, 2022)

Added

  • Rename and expose BytesMut::spare_capacity_mut (#572)
  • Implement native-endian get and put functions for Buf and BufMut (#576)

Fixed

  • Don't have important data in unused capacity when calling reserve (#563)

Documented

  • Bytes::new etc should return Self not Bytes (#568)

Bytes v1.2.1

1.2.1 (July 30, 2022)

Fixed

  • Fix unbounded memory growth when using reserve (#560)

... (truncated)

Changelog

Sourced from bytes's changelog.

1.5.0 (September 7, 2023)

Added

  • Add UninitSlice::{new,uninit} (#598, #599)
  • Implement BufMut for &mut [MaybeUninit<u8>] (#597)

Changed

  • Mark BytesMut::extend_from_slice as inline (#595)

1.4.0 (January 31, 2023)

Added

  • Make IntoIter constructor public (#581)

Fixed

  • Avoid large reallocations when freezing BytesMut (#592)

Documented

  • Document which functions require std (#591)
  • Fix duplicate "the the" typos (#585)

1.3.0 (November 20, 2022)

Added

  • Rename and expose BytesMut::spare_capacity_mut (#572)
  • Implement native-endian get and put functions for Buf and BufMut (#576)

Fixed

  • Don't have important data in unused capacity when calling reserve (#563)

Documented

  • Bytes::new etc should return Self not Bytes (#568)

1.2.1 (July 30, 2022)

Fixed

  • Fix unbounded memory growth when using reserve (#560)

1.2.0 (July 19, 2022)

Added

... (truncated)

Commits

Updates futures-task from 0.3.27 to 0.3.29

Release notes

Sourced from futures-task's releases.

0.3.29

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)

0.3.28

  • Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
  • Fix bug in FlattenUnordered (#2726, #2728)
Changelog

Sourced from futures-task's changelog.

0.3.29 - 2023-10-26

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)

0.3.28 - 2023-03-30

  • Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
  • Fix bug in FlattenUnordered (#2726, #2728)
Commits
  • 86f2a6a Release 0.3.29
  • a40204d Provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS...
  • 24cca65 Add TryAny adapter
  • e60a439 Add TryAll adapter
  • 5051335 Remove unsafe code from AssertUnmoved
  • 60a86e1 Fix Sync impl of FuturesUnordered
  • f392082 Extend io::AsyncBufReadExt::lines example with invalid UTF-8
  • 2f2ec39 Fix infinite loop caused by invalid UTF-8 bytes
  • 8570ea6 Fix unused_imports warning
  • 43c0c5f Add tests for StreamExt::all and StreamExt::any
  • Additional commits viewable in compare view

Updates futures-core from 0.3.27 to 0.3.29

Release notes

Sourced from futures-core's releases.

0.3.29

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)

0.3.28

  • Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
  • Fix bug in FlattenUnordered (#2726, #2728)
Changelog

Sourced from futures-core's changelog.

0.3.29 - 2023-10-26

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)

0.3.28 - 2023-03-30

  • Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
  • Fix bug in FlattenUnordered (#2726, #2728)
Commits
  • 86f2a6a Release 0.3.29
  • a40204d Provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS...
  • 24cca65 Add TryAny adapter
  • e60a439 Add TryAll adapter
  • 5051335 Remove unsafe code from AssertUnmoved
  • 60a86e1 Fix Sync impl of FuturesUnordered
  • f392082 Extend io::AsyncBufReadExt::lines example with invalid UTF-8
  • 2f2ec39 Fix infinite loop caused by invalid UTF-8 bytes
  • 8570ea6 Fix unused_imports warning
  • 43c0c5f Add tests for StreamExt::all and StreamExt::any
  • Additional commits viewable in compare view

Updates mio from 0.8.6 to 0.8.9

Changelog

Sourced from mio's changelog.

0.8.9

Added

Fixed

0.8.8

Fixed

0.8.7

Added

  • Add/fix support for tvOS and watchOS, Mio should now build for tvOS and watchOS, but we don't have a CI setup yet (tokio-rs/mio#1658).

Changed

  • Made the log dependency optional behind the log feature flag (enabled by default). Users that disabled Mio's default features will now not see any logging from Mio, enabling the log feature will fix that. This was done in response to the log crate increasing it's MSRV to v1.60, see rust-lang/log#552 (tokio-rs/mio#1673).
  • Update windows-sys dependency to v0.48 (tokio-rs/mio#1663).

... (truncated)

Commits
  • e80c3b2 Release v0.8.9
  • 862786b Fix importing of IoSourceState
  • 4034872 Add support for vita target
  • 8eb4010 Fix receiver and sender fd in pipe based waker
  • 9f21ce1 Enable sys::unix::pipe when using pipe based Waker
  • e7a0685 Reuse pipe2 polyfill code
  • 808dbb0 Implement pipe2 for AIX
  • 605ba78 Add AIX operating system support
  • 8dd37c5 Skip MSRV test for macOS
  • 2856112 Run the MSRV CI check on more platforms
  • Additional commits viewable in compare view

Updates openssl-macros from 0.1.0 to 0.1.1

Updates serde from 1.0.168 to 1.0.190

Release notes

Sourced from serde's releases.

v1.0.190

  • Preserve NaN sign when deserializing f32 from f64 or vice versa (#2637)

v1.0.189

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @​ahl)

v1.0.188

  • Fix "failed to parse manifest" error when building serde using a Cargo version between 1.45 and 1.50 (#2603)

v1.0.187

  • Remove support for Emscripten targets on rustc older than 1.40 (#2600)

v1.0.186

  • Disallow incompatible versions of serde_derive and serde in the dependency graph (#2588, thanks @​soqb)

v1.0.185

  • Fix error "cannot move out of *self which is behind a shared reference" deriving Serialize on a non_exhaustive enum (#2591)

v1.0.184

  • Restore from-source serde_derive build on all platforms — eventually we'd like to use a first-class precompiled macro if such a thing becomes supported by cargo / crates.io

v1.0.183

  • Support deserializing Box<OsStr> with an equivalent representation as OsString (#2556, thanks @​DBLouis)

v1.0.182

  • Render field aliases in sorted order in error messages (#2458, thanks @​Mingun)
  • Support serde(default) on tuple structs (#2553, thanks @​Mingun)

v1.0.181

  • Make serde(alias) work in combination with flatten when using in-place deserialization (#2443, thanks @​Mingun)
  • Improve the representation of adjacently tagged enums in formats where enum tags are serialized by index, as opposed to by string name (#2505, #2496, thanks @​Baptistemontan)

v1.0.180

  • Update to 2018 edition

v1.0.179

  • Support serialization of tuple variants inside a flattened field (#2448, thanks @​Mingun)

v1.0.178

  • Fix build error when using serde with "std" feature turned off and "unstable" feature turned on (#2541)

v1.0.177

  • Add serde(rename_all_fields = "...") attribute to apply a rename_all on every struct variant of an enum (#1695, thanks @​jplatte)
  • Improve diagnostics for attribute parse errors (#2536, thanks @​jplatte)

v1.0.176

  • Allow tag field of an internally tagged enum to have same name as a field inside a skipped struct variant (#2266, thanks @​flisky)

v1.0.175

  • Restore missing LICENSE files in serde_derive crate (#2527, thanks @​ankane)

... (truncated)

Commits
  • edb1a58 Release 1.0.190
  • 11c2917 Merge pull request #2637 from dtolnay/nansign
  • 6ba9c12 Float copysign does not exist in libcore yet
  • d2fcc34 Ensure f32 deserialized from f64 and vice versa preserve NaN sign
  • a091a07 Add float NaN tests
  • bb4135c Fix unused imports
  • 8de84b7 Resolve get_first clippy lint
  • 9cdf332 Remove 'remember to update' reminder from Cargo.toml
  • e94fc65 Release 1.0.189
  • b908487 Remove double nesting of first_attempt
  • Additional commits viewable in compare view

Updates serde_bytes from 0.11.7 to 0.11.12

Release notes

Sourced from serde_bytes's releases.

0.11.12

  • Documentation improvements

0.11.11

No release notes provided.

0.11.10

  • Add no-alloc category to crates.io metadata

0.11.9

  • Documentation improvements

0.11.8

  • Documentation improvements
Commits
  • 72a3041 Release 0.11.12
  • 32291a2 Opt in to generate-link-to-definition when building on docs.rs
  • 5e6b076 Release 0.11.11
  • 511acb3 Eliminate syn 1 from minimal-versions
  • 8f8a804 Add CI job using minimal-versions
  • 0ad4435 Release 0.11.10
  • 1aa6ac9 Add no-std::no-alloc category
  • fd758f8 Support a manual trigger on CI workflow
  • 0504fcb Raise minimum tested compiler to 1.56
  • c3c8393 Release 0.11.9
  • Additional commits viewable in compare view

Updates rmp-serde from 1.1.1 to 1.1.2

Commits

Updates brotli from 3.3.4 to 3.4.0

Commits

Updates wasmprinter from 0.2.45 to 0.2.70

Commits
  • 722b599 Bump version numbers and try to future-proof (#1250)
  • f5f6174 Add wast parsing support for threads proposal (#1248)
  • 2d8ea0a Enable threads, multi-memory, and relaxed-simd by default (

Bumps the nonbreaking group with 23 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.71` | `1.0.75` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.73` | `1.0.83` |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.64.0` | `0.68.1` |
| [walkdir](https://github.com/BurntSushi/walkdir) | `2.3.2` | `2.4.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.26.0` | `1.33.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.1.0` | `1.5.0` |
| [futures-task](https://github.com/rust-lang/futures-rs) | `0.3.27` | `0.3.29` |
| [futures-core](https://github.com/rust-lang/futures-rs) | `0.3.27` | `0.3.29` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.6` | `0.8.9` |
| openssl-macros | `0.1.0` | `0.1.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.168` | `1.0.190` |
| [serde_bytes](https://github.com/serde-rs/bytes) | `0.11.7` | `0.11.12` |
| [rmp-serde](https://github.com/3Hren/msgpack-rust) | `1.1.1` | `1.1.2` |
| [brotli](https://github.com/dropbox/rust-brotli) | `3.3.4` | `3.4.0` |
| [wasmprinter](https://github.com/bytecodealliance/wasm-tools) | `0.2.45` | `0.2.70` |
| [swc_core](https://github.com/swc-project/swc) | `0.83.0` | `0.86.17` |
| [wit-parser](https://github.com/bytecodealliance/wasm-tools) | `0.11.3` | `0.12.1` |
| [convert_case](https://github.com/rutrum/convert-case) | `0.4.0` | `0.6.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.3.6` | `0.5.1` |
| [num-format](https://github.com/bcmyers/num-format) | `0.4.3` | `0.4.4` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.4.0` | `3.8.0` |
| [wasmparser](https://github.com/bytecodealliance/wasm-tools) | `0.106.0` | `0.115.0` |


Updates `anyhow` from 1.0.71 to 1.0.75
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.71...1.0.75)

Updates `cc` from 1.0.73 to 1.0.83
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.73...1.0.83)

Updates `bindgen` from 0.64.0 to 0.68.1
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.64.0...v0.68.1)

Updates `walkdir` from 2.3.2 to 2.4.0
- [Commits](BurntSushi/walkdir@2.3.2...2.4.0)

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

Updates `bytes` from 1.1.0 to 1.5.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.1.0...v1.5.0)

Updates `futures-task` from 0.3.27 to 0.3.29
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.27...0.3.29)

Updates `futures-core` from 0.3.27 to 0.3.29
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.27...0.3.29)

Updates `mio` from 0.8.6 to 0.8.9
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.6...v0.8.9)

Updates `openssl-macros` from 0.1.0 to 0.1.1

Updates `serde` from 1.0.168 to 1.0.190
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.168...v1.0.190)

Updates `serde_bytes` from 0.11.7 to 0.11.12
- [Release notes](https://github.com/serde-rs/bytes/releases)
- [Commits](serde-rs/bytes@0.11.7...0.11.12)

Updates `rmp-serde` from 1.1.1 to 1.1.2
- [Release notes](https://github.com/3Hren/msgpack-rust/releases)
- [Commits](https://github.com/3Hren/msgpack-rust/commits)

Updates `brotli` from 3.3.4 to 3.4.0
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](https://github.com/dropbox/rust-brotli/commits)

Updates `wasmprinter` from 0.2.45 to 0.2.70
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](bytecodealliance/wasm-tools@wasmprinter-0.2.45...wasmprinter-0.2.70)

Updates `swc_core` from 0.83.0 to 0.86.17
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/swc-project/swc/commits)

Updates `wit-parser` from 0.11.3 to 0.12.1
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](bytecodealliance/wasm-tools@wit-parser-0.11.3...wit-parser-0.12.1)

Updates `convert_case` from 0.4.0 to 0.6.0
- [Commits](https://github.com/rutrum/convert-case/commits)

Updates `uuid` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.4.1...1.5.0)

Updates `criterion` from 0.3.6 to 0.5.1
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.3.6...0.5.1)

Updates `num-format` from 0.4.3 to 0.4.4
- [Changelog](https://github.com/bcmyers/num-format/blob/main/CHANGELOG.md)
- [Commits](bcmyers/num-format@v0.4.3...v0.4.4)

Updates `tempfile` from 3.4.0 to 3.8.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.4.0...v3.8.0)

Updates `wasmparser` from 0.106.0 to 0.115.0
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](bytecodealliance/wasm-tools@wasmparser-0.106.0...wasmparser-0.115.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: cc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: bindgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: walkdir
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: futures-task
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: futures-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: mio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: openssl-macros
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: serde_bytes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: rmp-serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: brotli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: wasmprinter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: swc_core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: wit-parser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: convert_case
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: criterion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: num-format
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nonbreaking
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
- dependency-name: wasmparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nonbreaking
...

Signed-off-by: dependabot[bot] <[email protected]>
@jeffcharles
Copy link
Collaborator

@dependabot merge

@dependabot dependabot bot merged commit 2e4da01 into main Oct 26, 2023
14 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/nonbreaking-6b89c94b9e branch October 26, 2023 20:45
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 Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant