stadust / pointercrate

Rewrite of the https://pointercrate.com backend in Rust
MIT License
80 stars 52 forks source link

Build(deps): Bump the pointercrate group across 1 directory with 17 updates #142

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the pointercrate group with 14 updates in the / directory:

Package From To
derive_more 0.99.17 0.99.18
url 2.5.0 2.5.2
reqwest 0.12.4 0.12.5
lazy_static 1.4.0 1.5.0
backtrace 0.3.72 0.3.73
bytemuck 1.16.0 1.16.1
cc 1.0.99 1.0.100
http-body-util 0.1.1 0.1.2
httparse 1.8.0 1.9.4
memchr 2.7.2 2.7.4
miniz_oxide 0.7.3 0.7.4
proc-macro2 1.0.85 1.0.86
sqlformat 0.2.3 0.2.4
subtle 2.5.0 2.6.0

Updates derive_more from 0.99.17 to 0.99.18

Changelog

Sourced from derive_more's changelog.

0.99.18 - 2024-06-15

  • Update syn to version 2.x
  • Bump minimum supported rust version to 1.65

0.99.10 - 2020-09-11

Improvements

  • From supports additional types for conversion: #[from(types(u8, u16))].

0.99.7 - 2020-05-16

Fixes

  • Fix generic derives for MulAssign

Improvements

  • When specifying specific features of the crate to only enable specific derives, the extra-traits feature of syn is not always enabled when those the specified features do not require it. This should speed up compile time of syn when this feature is not needed.

0.99.6 - 2020-05-13

Improvements

  • Make sure output of derives is deterministic, for better support in rust-analyzer

0.99.5 - 2020-03-28

New features

Fixes

  • Fix generic bounds for Deref and DerefMut with forward, i.e. put Deref bound on whole type, so on where Box<T>: Deref instead of on T: Deref. (#107)

  • The tests directory is now correctly included in the crate (requested by Debian package maintainers)

0.99.4 - 2020-03-28

... (truncated)

Commits
  • 678a473 chore: Release derive_more version 0.99.18
  • fcde556 Include example published package
  • 89cbd82 Remove track_caller feature detection because msrv was bumped
  • db36f6d Fix question marks
  • f0c2530 fmt
  • 461db95 Fix issue when compiling on 1.65
  • 39ad36f Update changelog for v0.99.18
  • 57b6e17 Update to syn 2
  • ea4fa94 Fix tests
  • ab82aef Ignore error doctests as it still contains old backtrace logic
  • Additional commits viewable in compare view


Updates url from 2.5.0 to 2.5.2

Commits


Updates reqwest from 0.12.4 to 0.12.5

Release notes

Sourced from reqwest's releases.

v0.12.5

What's Changed

  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.4...v0.12.5

Changelog

Sourced from reqwest's changelog.

v0.12.5

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.
Commits
  • 29d4cff v0.12.5
  • a7880d6 tests: fix http3 tests
  • c32d877 tests: enable http3 content-length test
  • ce3b30e http3: send content-length if known
  • 404df59 test: add http3 test server support
  • e5ce0b5 fix: don't enable hyper-rustls/http2 unless http2 is already enabled
  • ccb5e40 Don't compile hyper-tls with native-roots unless rustls-tls-native-roots is e...
  • c56fbae tests: remove a proxy parse error check
  • 8cc7cd4 msrv: pin url
  • 695bc04 fix: http3 resolving ipv6 addresses (#2305)
  • Additional commits viewable in compare view


Updates lazy_static from 1.4.0 to 1.5.0

Commits


Updates backtrace from 0.3.72 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: https://github.com/rust-lang/backtrace-rs/compare/0.3.72...0.3.73

Commits


Updates bytemuck from 1.16.0 to 1.16.1

Changelog

Sourced from bytemuck's changelog.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.
Commits


Updates cc from 1.0.99 to 1.0.100

Release notes

Sourced from cc's releases.

cc-v1.0.100

Other

  • Update publish.yml to use release-plz (#1101)
  • Accpet OsStr instead of str for flags (#1100)
  • Use dep: syntax to avoid implicit features. (#1099)
  • Minor clippy fixes. (#1098)
  • Fix WASI compilation for C++ (#1083)
  • Regenerate windows sys bindings (#1096)
  • Rename regenerate-windows-sys to regenerate-windows-sys.yml (#1095)
  • Create regenerate-windows-sys.yml (#1094)
  • Update windows-bindgen requirement from 0.56 to 0.57 (#1091)
  • Eagerly close tempfile to fix #1082 (#1087)
  • Output msvc.exe in the output directory (#1090)
  • Fix clippy warnings on Windows (#1088)
  • Don't try to free DLL on drop (#1089)
  • Fix panic safety issue in StderrForwarder (#1079)
Changelog

Sourced from cc's changelog.

1.0.100 - 2024-06-23

Other

  • Update publish.yml to use release-plz (#1101)
  • Accpet OsStr instead of str for flags (#1100)
  • Use dep: syntax to avoid implicit features. (#1099)
  • Minor clippy fixes. (#1098)
  • Fix WASI compilation for C++ (#1083)
  • Regenerate windows sys bindings (#1096)
  • Rename regenerate-windows-sys to regenerate-windows-sys.yml (#1095)
  • Create regenerate-windows-sys.yml (#1094)
  • Update windows-bindgen requirement from 0.56 to 0.57 (#1091)
  • Eagerly close tempfile to fix #1082 (#1087)
  • Output msvc.exe in the output directory (#1090)
  • Fix clippy warnings on Windows (#1088)
  • Don't try to free DLL on drop (#1089)
  • Fix panic safety issue in StderrForwarder (#1079)
Commits


Updates http-body-util from 0.1.1 to 0.1.2

Commits
  • 482c349 http-body-util: v0.1.2
  • 60c6383 refactor(ci): small refactoring (#113)
  • 23212f1 feat(util): add BodyDataStream (#117)
  • fe8aa7e refactor: replace deprecated std::u64 with primitive type
  • 6a85548 include license files in published crates
  • 46c54fb chore(util): resolve duplicate import
  • See full diff in compare view


Updates httparse from 1.8.0 to 1.9.4

Release notes

Sourced from httparse's releases.

v1.9.4

What's Changed

New Contributors

Full Changelog: https://github.com/seanmonstar/httparse/compare/v1.9.3...v1.9.4

v1.9.3

What's Changed

Full Changelog: https://github.com/seanmonstar/httparse/compare/v1.9.2...v1.9.3

v1.9.2

What's Changed

Full Changelog: https://github.com/seanmonstar/httparse/compare/v1.9.1...v1.9.2

v1.9.1

What's Changed

Full Changelog: https://github.com/seanmonstar/httparse/compare/v1.9.0...v1.9.1

v1.9.0

What's Changed

... (truncated)

Commits
  • ab76284 v1.9.4
  • 55933eb Fix parse_uri to pass the new tests
  • b2b3ce6 Add a test covering all similar permutations
  • 7c0d445 Add regression tests covering this bug
  • 896f1c1 v1.9.3
  • 6b0e66b test: parse a header with no after colon
  • 140faf3 Revert "simd: split cursor advancing from value matching (#156)"
  • 8c08de6 v1.9.2
  • 22e6415 fix test compilation of swar on 32bit
  • 26611e1 ci: check x86 without simd
  • Additional commits viewable in compare view


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.35.0 to 0.36.0

Changelog

Sourced from object's changelog.

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 splitting the object file name into path and member. #686

  • Changed read::coff::ImageSymbol::address to only return an address for symbols that have an address. #689

Added

  • Added pod::slice_from_all_bytes and pod::slice_from_all_bytes_mut. #672

  • Added write::Object::set_subsections_via_symbols. Changed write::Object::add_symbol_data and write::Object::add_symbol_bss to correctly handle zero size symbols when subsections are enabled. #676

  • Added methods in the unified read API to return the lower level API structures. Some existing methods were deprecated so that naming of these methods is more consistent. #678

  • Added methods in the lower level read API to return a SectionIndex or SymbolIndex. #684 #689

  • Implemented Display for read::SymbolIndex and read::SectionIndex. #684

  • Added is_common, is_absolute, is_local, and is_weak to read::elf::Sym.

... (truncated)

Commits
  • 88d6bc3 Release 0.36.0
  • 9d87937 Fix clippy warnings
  • 71f9edb Update Cargo.lock
  • 49cc92e Remove unused glob dependency
  • b271ade Update wasmparser dependency to 0.208.1
  • 18d5d59 Use add_symbol_data in simple_write example
  • 81767fd read: add more helpers for SymbolIndex and SectionIndex (#689)
  • 7b897db read/macho: split object names in ObjectMap (#686)
  • aa2f5ad read/elf: small fixes to low level API (#685)
  • 017624a read: use SectionIndex/SymbolIndex in low level API (#684)
  • Additional commits viewable in compare view


Updates proc-macro2 from 1.0.85 to 1.0.86

Release notes

Sourced from proc-macro2's releases.

1.0.86

  • Documentation improvements
Commits


Updates spin from 0.5.2 to 0.9.8

Changelog

Sourced from spin's changelog.

[0.9.8] - 2023-04-03

Fixed

  • Unsoundness in Once::try_call_once caused by an Err(_) result

[0.9.7] - 2023-03-27

Fixed

  • Relaxed accidentally restricted Send/Sync bounds for Mutex guards

[0.9.6] - 2023-03-13

Fixed

  • Relaxed accidentally restricted Send/Sync bounds for RwLock guards

[0.9.5] - 2023-02-07

Added

  • FairMutex, a new mutex implementation that reduces writer starvation.
  • A MSRV policy: Rust 1.38 is currently required

Changed

  • The crate's CI now has full MIRI integration, further improving the confidence you can have in the implementation.

Fixed

  • Ensured that the crate's abstractions comply with stacked borrows rules.
  • Unsoundness in the RwLock that could be triggered via a reader overflow
  • Relaxed various Send/Sync bound requirements to make the crate more flexible

[0.9.4] - 2022-07-14

Fixed

  • Fixed unsoundness in RwLock on reader overflow
  • Relaxed Send/Sync bounds for SpinMutex and TicketMutex (doesn't affect Mutex itself)

[0.9.3] - 2022-04-17

Added

  • Implemented Default for Once
  • Once::try_call_once

Fixed

... (truncated)

Commits


Updates sqlformat from 0.2.3 to 0.2.4

Changelog

Sourced from sqlformat's changelog.

Version 0.2.4

  • Remove itertools dependency #34
Commits


Updates subtle from 2.5.0 to 2.6.0

Changelog

Sourced from subtle's changelog.

Changelog

Entries are listed in reverse chronological order.

Commits
  • 1da93bf Bump version to 2.6.
  • 1da204b Update copyright year.
  • 3e8d92b Merge remote-tracking branch 'tarcieri/black-box' into develop
  • bf87dee Add BlackBox
  • f527719 Merge remote-tracking branch 'tarcieri/black-box' into develop
  • c0774e9 Add BlackBox
  • 0375871 Merge remote-tracking branch 'tarcieri/black-box' into develop
  • 2e97464 Add BlackBox
  • 22606eb Merge remote-tracking branch 'AaronFeickert/inline-warnings' into develop
  • 54441e7 Silence warnings
  • Additional commits viewable in compare view


Updates sync_wrapper from 0.1.2 to 1.0.1

Commits
  • ec3abb0 release 1.0.1
  • 296f652 Merge pull request #15 from M4SS-Code/docs-features
  • 1a4bdf6 Enable futures feature in docs.rs build
  • 763f49a release 1.0.0
  • 66afbdf Merge pull request #13 from AliSajid/fix-smart-quote
  • 659ef11 style: replace the smartquote in Cargo.toml with a standard apostrophe
  • See full diff in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 3 months ago

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