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

build(deps): bump the crates group in /userspace/ksud with 40 updates #1894

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 19, 2024

Bumps the crates group in /userspace/ksud with 40 updates:

Package From To
zip-extensions 0.7.0 0.8.0
anstyle-query 1.0.3 1.1.0
async-trait 0.1.80 0.1.81
backtrace 0.3.71 0.3.73
bytes 1.6.0 1.6.1
cc 1.0.98 1.1.6
clap_lex 0.7.0 0.7.1
constant_time_eq 0.1.5 0.3.0
displaydoc 0.2.4 0.2.5
either 1.12.0 1.13.0
gimli 0.28.1 0.29.0
lazy_static 1.4.0 1.5.0
memchr 2.7.2 2.7.4
miniz_oxide 0.7.3 0.7.4
object 0.32.2 0.36.1
pbkdf2 0.11.0 0.12.2
proc-macro2 1.0.83 1.0.86
regex-automata 0.4.6 0.4.7
regex-syntax 0.8.3 0.8.4
rust-embed-impl 8.4.0 8.5.0
rust-embed-utils 8.4.0 8.5.0
subtle 2.5.0 2.6.1
syn 2.0.65 2.0.71
thiserror 1.0.61 1.0.63
thiserror-impl 1.0.61 1.0.63
tokio 1.37.0 1.38.1
unicode-width 0.1.12 0.1.13
utf8parse 0.2.1 0.2.2
windows-targets 0.52.5 0.52.6
windows_aarch64_gnullvm 0.52.5 0.52.6
windows_aarch64_msvc 0.52.5 0.52.6
windows_i686_gnu 0.52.5 0.52.6
windows_i686_gnullvm 0.52.5 0.52.6
windows_i686_msvc 0.52.5 0.52.6
windows_x86_64_gnu 0.52.5 0.52.6
windows_x86_64_gnullvm 0.52.5 0.52.6
windows_x86_64_msvc 0.52.5 0.52.6
zstd 0.11.2+zstd.1.5.2 0.13.1
zstd-safe 5.0.2+zstd.1.5.2 7.1.0
zstd-sys 2.0.10+zstd.1.5.6 2.0.12+zstd.1.5.6

Updates zip-extensions from 0.7.0 to 0.8.0

Release notes

Sourced from zip-extensions's releases.

v0.8.0

Changes

  • Upgrades the zip package reference; uses the new zip2 version
  • Adds FileOptionExtension type argument to the zip_create_from_directory_with_options trait and implementation to address zip2 build issues
  • Removes the mut modifier from the ZipWriterExtensions to fix issues
Changelog

Sourced from zip-extensions's changelog.

[0.8.0] - 2024-06-02

The project follows the active development of the zip crate and has thus been updated to work with zip2; this release comes with several breaking changes in the write module.

Changed

  • Upgrades the zip package reference; uses the new zip2 version
  • Adds FileOptionExtension type argument to the zip_create_from_directory_with_options trait and implementation to address zip2 build issues
  • Removes the mut modifier from the ZipWriterExtensions to fix issues
Commits

Updates anstyle-query from 1.0.3 to 1.1.0

Commits
  • f12fbef chore: Release
  • 9f212e2 docs: Update changelog
  • b922b24 Merge pull request #194 from epage/query
  • 1d210c7 fix(query)!: Update CLICOLOR_FORCE to check non-empty
  • b64de77 refactor(query): Pull out non-empty check
  • f9cb13d Merge pull request #190 from epage/snapbox
  • c33f6c6 chore: Update to snapbox 0.6
  • 098acf7 refactor: Resolve deprecations
  • c0ef61f chore: Update to snapbox 0.5.14
  • abd2a71 chore(deps): Update compatible (dev) (#181)
  • Additional commits viewable in compare view

Updates async-trait from 0.1.80 to 0.1.81

Release notes

Sourced from async-trait's releases.

0.1.81

  • Turn off unneeded features of syn dependency (#272, thanks @​klensy)
Commits
  • 383f65f Release 0.1.81
  • 4ec740e Merge pull request #273 from dtolnay/cloneimpls
  • b6c6063 Ignore trivially_copy_pass_by_ref pedantic clippy lint
  • 315fd90 Turn off syn/clone-impls feature
  • 94a3165 Merge pull request #272 from klensy/syn-f
  • 2fac940 syn: remove derive feature
  • 4a00d73 Work around dead code warning in test
  • dba15b5 Merge pull request #270 from dtolnay/objsafety
  • d28c95b Former where_clauses_object_safety lint is now hard error
  • 78a5922 Fill in ignore reasons in all #[ignore] attributes
  • Additional commits viewable in compare view

Updates backtrace from 0.3.71 to 0.3.73

Release notes

Sourced from backtrace's releases.

0.3.73

This basically just is bugfixes so that backtrace works on Windows 7 again.

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.72...0.3.73

0.3.72

This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72.

If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies.

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.71...0.3.72

Commits

Updates bytes from 1.6.0 to 1.6.1

Release notes

Sourced from bytes's releases.

Bytes 1.6.1

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Changelog

Sourced from bytes's changelog.

1.6.1 (July 13, 2024)

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Commits

Updates cc from 1.0.98 to 1.1.6

Release notes

Sourced from cc's releases.

cc-v1.1.6

Other

cc-v1.1.5

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)

cc-v1.1.4

Other

  • Support compiling on wasm targets (Supersede #1068) (#1160)

cc-v1.1.3

Other

  • Reduce msrv to 1.63 (#1158)
  • Revert "Use raw-dylib for windows-sys (#1137)" (#1157)
  • Fix typos (#1152)
  • Fix doc_lazy_continuation lints (#1153)

cc-v1.1.2

Other

  • Add empty jobserver feature. (#1150)

cc-v1.1.1

Other

  • Fix is_flag_supported not respecting emit_rerun_if_env_changed (#1147) (#1148)

cc-v1.1.0

Added

  • add cargo_output to eliminate last vestiges of stdout pollution (#1141)

cc-v1.0.106

Other

  • Drop support for Visual Studio 12 (2013) (#1046)
  • Use raw-dylib for windows-sys (#1137)
  • Bump msrv to 1.67 (#1143)
  • Bump msrv to 1.65 (#1140)
  • Fix clippy warnings (#1138)

cc-v1.0.105

Other

  • Regenerate windows sys bindings (#1132)
  • Fix generate-windows-sys-bindings (#1133)
  • Fix gen-windows-sys-binding (#1130)
  • Fix gen-windows-sys-binding (#1127)
  • Update windows-bindgen requirement from 0.57 to 0.58 (#1123)

cc-v1.0.104

Other

  • Fixed link break about compile-time-requirements (#1118)

... (truncated)

Changelog

Sourced from cc's changelog.

1.1.6 - 2024-07-19

Other

1.1.5 - 2024-07-15

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)

1.1.4 - 2024-07-14

Other

  • Support compiling on wasm targets (Supersede #1068) (#1160)

1.1.3 - 2024-07-14

Other

  • Reduce msrv to 1.63 (#1158)
  • Revert "Use raw-dylib for windows-sys (#1137)" (#1157)
  • Fix typos (#1152)
  • Fix doc_lazy_continuation lints (#1153)

1.1.2 - 2024-07-12

Other

  • Add empty jobserver feature. (#1150)

1.1.1 - 2024-07-12

Other

  • Fix is_flag_supported not respecting emit_rerun_if_env_changed (#1147) (#1148)

1.1.0 - 2024-07-08

Added

  • add cargo_output to eliminate last vestiges of stdout pollution (#1141)

1.0.106 - 2024-07-08

Other

  • Drop support for Visual Studio 12 (2013) (#1046)
  • Use raw-dylib for windows-sys (#1137)
  • Bump msrv to 1.67 (#1143)
  • Bump msrv to 1.65 (#1140)
  • Fix clippy warnings (#1138)

1.0.105 - 2024-07-07

Other

... (truncated)

Commits

Updates clap_lex from 0.7.0 to 0.7.1

Changelog

Sourced from clap_lex's changelog.

v0.7.1 (2015-05-01)

Bug Fixes

  • MultipleValues stops evaluating values if the max or exact number of values was reached (86d92c9f)
Commits
  • f087c39 chore: Release
  • 1870d32 docs: Update changelog
  • ea7bfe2 Merge pull request #5520 from epage/exclusive
  • 08656d0 fix(parser): Allow exclusive to override required_*
  • 65e90cd test(parser): Show conditional requireds and exclusive
  • 5e3386b docs: Link to repo, not webpage inside repo
  • 2d83106 chore(deps): Update compatible (dev) (#5514)
  • b917796 Merge pull request #5505 from epage/snapbox
  • 75e2199 chore: Upgrade snapbox
  • 4aefa3c docs(ref): Clean up long help descriptions
  • Additional commits viewable in compare view

Updates constant_time_eq from 0.1.5 to 0.3.0

Changelog

Sourced from constant_time_eq's changelog.

0.3.0

  • Use black_box instead of volatile read when inline assembly is not available.
  • Increase minimum Rust version to 1.66, which is when black_box was stabilized.

0.2.6

  • New tests using the count_instructions crate; no functional changes.

0.2.5

  • Add #[must_use] to all functions.

0.2.4

  • Since CC0 is no longer accepted as a license for code by Fedora, also allow MIT-0 or Apache-2.0 as options. No code changes.

0.2.3

  • Add fixed-size variant for arrays of any size (using const generics).

0.2.2

  • Set rust-version in Cargo.toml to 1.59.

0.2.1

  • Reduce inlining of variable-size variant. In 0.1.5, the loop was not inlined, and it can be a bit large due to the auto-vectorization. Go back to how it was in 0.1.5, but allowing the compiler to inline if it believes it would be a speed gain.

0.2.0

  • Use inline assembly when available to hide from the optimizer.
  • When inline assembly is not available, use both a volatile read and disabled inlining.
  • Increase minimum Rust version to 1.59, which is the first with inline assembly.
Commits
  • 09a3462 Release 0.3.0
  • 7c45cf6 Use black_box for no-asm fallback
  • 0e75235 Use count_instructions to validate optimizer_hide directly
  • b8b503b Small test cleanup
  • e04b1ea Small test cleanup
  • 8753949 Release 0.2.6
  • 0b4cea3 Show that count_instructions tests can detect early returns
  • 81e118a Run count_instructions tests in parallel
  • 676d5fb Fix github tests
  • f1c4d45 Fix github tests
  • Additional commits viewable in compare view

Updates displaydoc from 0.2.4 to 0.2.5

Changelog

Sourced from displaydoc's changelog.

[0.2.5] - 2024-06-20

Changed

  • Don't name the output of the const block to work around non_local_definitions error (#47)
  • Reference the core crate correctly to avoid clashes with modules named core (#45)
  • Explicitly list MSRV in Cargo.toml (#51)
  • Bump edition to 2021 (#51)
Commits

Updates either from 1.12.0 to 1.13.0

Commits
  • e3ec250 Merge pull request #108 from cuviper/release-1.13.0
  • 00fecfb Release 1.13.0
  • add1817 Fix clippy::doc_lazy_continuation
  • cd0aab9 Merge pull request #107 from ColonelThirtyTwo/cloned-copied
  • e31810d Fix docs on Either<&mut L, &mut R>::copied
  • 8e62690 Add Either::cloned and Either::copied
  • See full diff in compare view

Updates gimli from 0.28.1 to 0.29.0

Changelog

Sourced from gimli's changelog.

0.29.0

Released 2024/04/11.

Breaking changes

  • Changed Reader type parameter to ReaderOffset for read::UnwindContext and related types. Replaced Expression with UnwindExpression in unwind information types. #703

Changed

  • Changed write::Sections::for_each and for_each_mut to specify section lifetime. #699

  • Fixed writing unwind information with an LSDA encoding that is not DW_EH_PE_absptr. #704

  • Fixed parsing for an empty DWP index. #706

  • Improved error handling in read::Unit::dwo_name. #693

  • Fixed warnings. #692 #694 #695 #696

Added

  • Added MIPS register definitions. #690

  • Added PowerPC register definitions. #691

  • Added read::DwarfSections and read::DwarfPackageSections. #698

  • Implemented BitOr for DwEhPe. #709

  • Added read::Relocate, read::RelocateReader, and write::RelocateWriter. #709


Commits

Updates lazy_static from 1.4.0 to 1.5.0

Commits

Updates memchr from 2.7.2 to 2.7.4

Commits

Updates miniz_oxide from 0.7.3 to 0.7.4

Changelog

Sourced from miniz_oxide's changelog.

0.7.4 - 2024-06-18

Bug Fixes

  • (miniz_oxide) simplify init_tree a little and use a smaller lookup table for bit reversal - (2ba520a) - oyvindln
  • (miniz_oxide) evade bounds checks in record_match to improve compression performance a little - (d1de8db) - oyvindln
  • (deflate) evade a bounds check in deflate for a small perf improvement - (b4baed3) - oyvindln

Other

  • disable c miniz part in miniz_oxide_c_api of bench - (2f0a9a3) - oyvindln

Commits

Updates object from 0.32.2 to 0.36.1

Changelog

Sourced from object's changelog.

0.36.1

Released 2024/06/29.

Added

  • Added SectionKind::DebugString. #694

  • Added Architecture::Sparc and Architecture::Sparc32Plus. #699 #700

  • Added more RISC-V ELF relocation constants. #701

Changed

  • Changed read::ElfFile::imports to return the library for versioned symbols. #693

  • Changed read::MachOFile to support Go's debug section compression. #697

  • Reversed the order of Mach-O relocations emitted by write::Object. #702


0.36.0

Released 2024/05/26.

Breaking changes

  • Deleted data and align parameters for write::Object::add_subsection. Use add_symbol_data or add_symbol_bss instead. #676

  • Changed methods in the lower level read API to accept or return SectionIndex or SymbolIndex instead of usize. #677 #684 #685

  • Deleted SymbolKind::Null. Changed read::Object::sections and read::Object::symbols to no longer return null entries. This affects ELF and XCOFF. #679

  • Changed read::ObjectMap::object to return ObjectMapFile. This handles

... (truncated)

Commits

Updates pbkdf2 from 0.11.0 to 0.12.2

Commits

Updates proc-macro2 from 1.0.83 to 1.0.86

Release notes

Sourced from proc-macro2's releases.

1.0.86

  • Documentation improvements

1.0.85

  • Mark some tests as only for 64-bit targets (#463)

1.0.84

Commits
  • aa9476b Release 1.0.86
  • 1961358 Merge pull request #466 from dtolnay/buildrs
  • e1bd2cc Bring build script comments up to date
  • 5b27127 Merge pull request #465 from dtolnay/ignorereason
  • 0da4629 Fill in ignore reasons in all #[ignore] attributes
  • 5ee1cab Release 1.0.85
  • aa64c20 Merge pull request #464 from dtolnay/testsize
  • bc9f4d9 Ignore size tests on non-64bit target
  • 1160ec3 Make size tests #[ignore] in cfg(randomize_layout)
  • 33c9578 Release 1.0.84
  • Additional commits viewable in compare view

Updates regex-automata from 0.4.6 to 0.4.7

Commits
  • 68c4f0b regex-automata-0.4.7
  • 4757b5f regex-syntax-0.8.4
  • 1430b65 changelog: 1.10.4
  • 1f9f9cc bytes: escape invalid UTF-8 bytes in debug output for Match
  • ab4c8d1 doc: fix duplicate phrasing typo
  • ddeb85e cli/deps: update memmap2 to 0.9
  • 023f1c9 lite: fix attribute warning about rustfmt
  • 9c139f4 syntax: simplify Hir::dot constructors
  • b12a276 syntax/utf8: avoid a spurious vector reallocation
  • 4c565c8 doc: fix typos
  • Additional commits viewable in compare view

Updates regex-syntax from 0.8.3 to 0.8.4

Commits
  • 4757b5f regex-syntax-0.8.4
  • 1430b65 changelog: 1.10.4
  • 1f9f9cc bytes: escape invalid UTF-8 bytes in debug output for Match
  • ab4c8d1 doc: fix duplicate phrasing typo
  • ddeb85e cli/deps: update memmap2 to 0.9
  • 023f1c9 lite: fix attribute warning about rustfmt
  • 9c139f4 syntax: simplify Hir::dot constructors
  • b12a276 syntax/utf8: avoid a spurious vector reallocation
  • 4c565c8 doc: fix typos
  • 66a3bca doc: remove repetitive words
  • See full diff in compare view

Updates rust-embed-impl from 8.4.0 to 8.5.0

Changelog

Sourced from rust-embed-impl's changelog.

[8.5.0] - 2024-07-09

  • Re-export RustEmbed as Embed #246. Thanks to krant
  • Allow users to specify a custom path to the rust_embed crate in generated code#232. Thanks to Wulf
  • Increase minimum rust-version to v1.7.0.0
Commits

Updates rust-embed-utils from 8.4.0 to 8.5.0

Changelog

Sourced from rust-embed-utils's changelog.

[8.5.0] - 2024-07-09

  • Re-export RustEmbed as Embed #246. Thanks to krant
  • Allow users to specify a custom path to the rust_embed crate in generated code#232. Thanks to Wulf
  • Increase minimum rust-version to v1.7.0.0
Commits

Updates subtle from 2.5.0 to 2.6.1

Changelog

Sourced from subtle's changelog.

Changelog

Entries are listed in reverse chronological order.

Commits

Bumps the crates group in /userspace/ksud with 40 updates:

| Package | From | To |
| --- | --- | --- |
| [zip-extensions](https://github.com/matzefriedrich/zip-extensions-rs) | `0.7.0` | `0.8.0` |
| [anstyle-query](https://github.com/rust-cli/anstyle) | `1.0.3` | `1.1.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.80` | `0.1.81` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.71` | `0.3.73` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.6.0` | `1.6.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.98` | `1.1.6` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.7.0` | `0.7.1` |
| [constant_time_eq](https://github.com/cesarb/constant_time_eq) | `0.1.5` | `0.3.0` |
| [displaydoc](https://github.com/yaahc/displaydoc) | `0.2.4` | `0.2.5` |
| [either](https://github.com/rayon-rs/either) | `1.12.0` | `1.13.0` |
| [gimli](https://github.com/gimli-rs/gimli) | `0.28.1` | `0.29.0` |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | `1.4.0` | `1.5.0` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.2` | `2.7.4` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.3` | `0.7.4` |
| [object](https://github.com/gimli-rs/object) | `0.32.2` | `0.36.1` |
| [pbkdf2](https://github.com/RustCrypto/password-hashes) | `0.11.0` | `0.12.2` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.83` | `1.0.86` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.6` | `0.4.7` |
| [regex-syntax](https://github.com/rust-lang/regex) | `0.8.3` | `0.8.4` |
| [rust-embed-impl](https://github.com/pyros2097/rust-embed) | `8.4.0` | `8.5.0` |
| [rust-embed-utils](https://github.com/pyros2097/rust-embed) | `8.4.0` | `8.5.0` |
| [subtle](https://github.com/dalek-cryptography/subtle) | `2.5.0` | `2.6.1` |
| [syn](https://github.com/dtolnay/syn) | `2.0.65` | `2.0.71` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.61` | `1.0.63` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.61` | `1.0.63` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.38.1` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) | `0.1.12` | `0.1.13` |
| [utf8parse](https://github.com/alacritty/vte) | `0.2.1` | `0.2.2` |
| [windows-targets](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_aarch64_gnullvm](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_aarch64_msvc](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_i686_gnu](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_i686_gnullvm](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_i686_msvc](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_x86_64_gnu](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_x86_64_gnullvm](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [windows_x86_64_msvc](https://github.com/microsoft/windows-rs) | `0.52.5` | `0.52.6` |
| [zstd](https://github.com/gyscos/zstd-rs) | `0.11.2+zstd.1.5.2` | `0.13.1` |
| [zstd-safe](https://github.com/gyscos/zstd-rs) | `5.0.2+zstd.1.5.2` | `7.1.0` |
| [zstd-sys](https://github.com/gyscos/zstd-rs) | `2.0.10+zstd.1.5.6` | `2.0.12+zstd.1.5.6` |


Updates `zip-extensions` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/matzefriedrich/zip-extensions-rs/releases)
- [Changelog](https://github.com/matzefriedrich/zip-extensions-rs/blob/master/CHANGELOG.md)
- [Commits](matzefriedrich/zip-extensions-rs@v0.7.0...v0.8.0)

Updates `anstyle-query` from 1.0.3 to 1.1.0
- [Commits](rust-cli/anstyle@anstyle-query-v1.0.3...anstyle-query-v1.1.0)

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

Updates `backtrace` from 0.3.71 to 0.3.73
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Commits](rust-lang/backtrace-rs@0.3.71...0.3.73)

Updates `bytes` from 1.6.0 to 1.6.1
- [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.6.0...v1.6.1)

Updates `cc` from 1.0.98 to 1.1.6
- [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@1.0.98...cc-v1.1.6)

Updates `clap_lex` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_lex-v0.7.0...clap_lex-v0.7.1)

Updates `constant_time_eq` from 0.1.5 to 0.3.0
- [Changelog](https://github.com/cesarb/constant_time_eq/blob/master/CHANGES)
- [Commits](cesarb/constant_time_eq@0.1.5...0.3.0)

Updates `displaydoc` from 0.2.4 to 0.2.5
- [Changelog](https://github.com/yaahc/displaydoc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yaahc/displaydoc/commits/v0.2.5)

Updates `either` from 1.12.0 to 1.13.0
- [Commits](rayon-rs/either@1.12.0...1.13.0)

Updates `gimli` from 0.28.1 to 0.29.0
- [Changelog](https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/gimli@0.28.1...0.29.0)

Updates `lazy_static` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases)
- [Commits](rust-lang-nursery/lazy-static.rs@1.4.0...1.5.0)

Updates `memchr` from 2.7.2 to 2.7.4
- [Commits](BurntSushi/memchr@2.7.2...2.7.4)

Updates `miniz_oxide` from 0.7.3 to 0.7.4
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Frommi/miniz_oxide/commits)

Updates `object` from 0.32.2 to 0.36.1
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.32.2...0.36.1)

Updates `pbkdf2` from 0.11.0 to 0.12.2
- [Commits](RustCrypto/password-hashes@pbkdf2-v0.11.0...pbkdf2-v0.12.2)

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

Updates `regex-automata` from 0.4.6 to 0.4.7
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@regex-automata-0.4.6...regex-automata-0.4.7)

Updates `regex-syntax` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@regex-syntax-0.8.3...regex-syntax-0.8.4)

Updates `rust-embed-impl` from 8.4.0 to 8.5.0
- [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md)
- [Commits](https://github.com/pyros2097/rust-embed/commits)

Updates `rust-embed-utils` from 8.4.0 to 8.5.0
- [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md)
- [Commits](https://github.com/pyros2097/rust-embed/commits)

Updates `subtle` from 2.5.0 to 2.6.1
- [Changelog](https://github.com/dalek-cryptography/subtle/blob/main/CHANGELOG.md)
- [Commits](dalek-cryptography/subtle@2.5.0...2.6.1)

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

Updates `thiserror` from 1.0.61 to 1.0.63
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.61...1.0.63)

Updates `thiserror-impl` from 1.0.61 to 1.0.63
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.61...1.0.63)

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

Updates `unicode-width` from 0.1.12 to 0.1.13
- [Commits](unicode-rs/unicode-width@v0.1.12...v0.1.13)

Updates `utf8parse` from 0.2.1 to 0.2.2
- [Release notes](https://github.com/alacritty/vte/releases)
- [Changelog](https://github.com/alacritty/vte/blob/master/CHANGELOG.md)
- [Commits](alacritty/vte@utf8parse_v0.2.1...utf8parse_v0.2.2)

Updates `windows-targets` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_aarch64_gnullvm` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_aarch64_msvc` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_i686_gnu` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_i686_gnullvm` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_i686_msvc` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_x86_64_gnu` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_x86_64_gnullvm` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `windows_x86_64_msvc` from 0.52.5 to 0.52.6
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits)

Updates `zstd` from 0.11.2+zstd.1.5.2 to 0.13.1
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](gyscos/zstd-rs@v0.11.2...v0.13.1)

Updates `zstd-safe` from 5.0.2+zstd.1.5.2 to 7.1.0
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/commits/zstd-safe-7.1.0)

Updates `zstd-sys` from 2.0.10+zstd.1.5.6 to 2.0.12+zstd.1.5.6
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](gyscos/zstd-rs@zstd-sys-2.0.10...zstd-sys-2.0.12)

---
updated-dependencies:
- dependency-name: zip-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: anstyle-query
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: backtrace
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: bytes
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: constant_time_eq
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: displaydoc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: gimli
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: lazy_static
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: memchr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: object
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: pbkdf2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: regex-automata
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: regex-syntax
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: rust-embed-impl
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: rust-embed-utils
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: subtle
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: tokio
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: unicode-width
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: utf8parse
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows-targets
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_aarch64_gnullvm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_aarch64_msvc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_i686_gnu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_i686_gnullvm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_i686_msvc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_x86_64_gnu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_x86_64_gnullvm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: windows_x86_64_msvc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: zstd
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: zstd-safe
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: crates
- dependency-name: zstd-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jul 19, 2024
@yujincheng08 yujincheng08 enabled auto-merge (squash) July 19, 2024 15:54
@yujincheng08 yujincheng08 merged commit 35f97d8 into main Jul 19, 2024
3 checks passed
@yujincheng08 yujincheng08 deleted the dependabot/cargo/userspace/ksud/crates-86785e56bc branch July 19, 2024 15:54
kutemeikito added a commit to kutemeikito/KernelSU that referenced this pull request Jul 22, 2024
* 'main' of https://github.com/tiann/KernelSU:
  build(deps): bump the npm group in /website with 3 updates (tiann#1903)
  build(deps): bump syn from 2.0.71 to 2.0.72 in /userspace/ksud in the crates group (tiann#1902)
  Upgrade rustix (tiann#1900)
  build(deps): bump the npm group in /website with 2 updates (tiann#1899)
  build(deps): bump the crates group in /userspace/ksud with 3 updates (tiann#1898)
  build(deps): bump the npm group in /website with 13 updates (tiann#1893)
  build(deps): bump the crates group in /userspace/ksud with 40 updates (tiann#1894)
  [skip ci] Group dependabot dependencies (tiann#1892)
  Upgrade zip (tiann#1891)
  build(deps): bump io.coil-kt:coil-compose from 2.6.0 to 2.7.0 in /manager (tiann#1888)
  build(deps): bump org.lsposed.libcxx:libcxx from 27.0.11718014-beta1 to 27.0.12077973 in /manager (tiann#1885)
  Upgrade deps (tiann#1886)
  build(deps-dev): bump vitepress from 1.3.0 to 1.3.1 in /website (tiann#1879)
  build(deps): bump com.google.devtools.ksp from 2.0.0-1.0.22 to 2.0.0-1.0.23 in /manager (tiann#1872)
  build(deps): bump agp from 8.5.0 to 8.5.1 in /manager (tiann#1873)
  Allow skipping commented policy (tiann#1870)
  build(deps): bump rust-embed from 8.4.0 to 8.5.0 in /userspace/ksud (tiann#1869)
  build(deps): bump clap from 4.5.8 to 4.5.9 in /userspace/ksud (tiann#1868)
  Setup Android SDK (tiann#1867)
  Upgrade gradle (tiann#1866)
  build(deps-dev): bump vitepress from 1.2.3 to 1.3.0 in /website (tiann#1865)
  Revert "ksud: [Fix] grant root to the shell in debug mode" (tiann#1860)
  ksud: upgrade zip (tiann#1859)
  ksud: [Fix] grant root to the shell in debug mode (tiann#1853)
  build(deps): bump lifecycle from 2.8.1 to 2.8.3 in /manager (tiann#1851)
  build(deps): bump clap from 4.5.7 to 4.5.8 in /userspace/ksud (tiann#1850)
  website: fix typo (tiann#1834)
  build(deps): bump android_logger from 0.13.3 to 0.14.1 in /userspace/ksud (tiann#1830)
  build(deps): bump log from 0.4.21 to 0.4.22 in /userspace/ksud (tiann#1843)
  Update resetprop (tiann#1842)
  throne_tracker: skip iterate if failed to open dir (tiann#1832)
  Translations update from Hosted Weblate (tiann#1734)
  build(deps): bump com.google.devtools.ksp from 2.0.0-1.0.21 to 2.0.0-1.0.22 in /manager (tiann#1811)
  manager: improve grammar in english (tiann#1814)
  Redirect the Feature Requests issue template tab (tiann#1788)
  website: fix typo (tiann#1807)
  build(deps): bump zip from 2.1.2 to 2.1.3 in /userspace/ksud (tiann#1810)
  build(deps): bump regex from 1.10.4 to 1.10.5 in /userspace/ksud (tiann#1815)
  build(deps): bump clap from 4.5.4 to 4.5.7 in /userspace/ksud (tiann#1817)
  build(deps): bump androidx.compose:compose-bom from 2024.05.00 to 2024.06.00 in /manager (tiann#1820)
  build(deps): bump agp from 8.4.1 to 8.5.0 in /manager (tiann#1824)
  build(deps): bump lifecycle from 2.8.0 to 2.8.1 in /manager (tiann#1782)
  website: update translations (tiann#1796)
  build(deps): bump zip-extensions from 0.6.2 to 0.7.0 in /userspace/ksud (tiann#1798)
  build(deps): bump zip from 2.1.0 to 2.1.2 in /userspace/ksud (tiann#1799)
  build(deps-dev): bump vitepress from 1.2.2 to 1.2.3 in /website (tiann#1803)
  manager: fix update no response when changelog is empty (tiann#1786)
  Convert devpts domain to ksu_file (tiann#1801)
  non-GKI:Remove maintainer Coconutat's  repositories (tiann#1794)
  从非官方支持设备中移除K-Nel-M1721 (tiann#1792)

Signed-off-by: Edwiin Kusuma Jaya <kutemeikito0905@gmail.com>
xxmustafacooTR pushed a commit to xxmustafacooTR/KernelSU that referenced this pull request Jul 24, 2024
jeffpeng3 pushed a commit to jeffpeng3/KernelSU that referenced this pull request Aug 5, 2024
fukiame pushed a commit to TelegramAt25/KernelSU-shukusai that referenced this pull request Aug 11, 2024
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.

None yet

1 participant