stadust / pointercrate

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

Build(deps): Bump the pointercrate group with 98 updates #104

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the pointercrate group with 98 updates:

Package From To
sqlx 0.7.3 0.7.4
log 0.4.20 0.4.21
chrono 0.4.31 0.4.37
serde_json 1.0.108 1.0.109
maud 0.25.0 0.26.0
tokio 1.35.1 1.37.0
reqwest 0.11.23 0.12.2
async-trait 0.1.75 0.1.76
jsonwebtoken 9.2.0 9.3.0
base64 0.21.5 0.22.0
bcrypt 0.15.0 0.15.1
ahash 0.8.6 0.8.11
aho-corasick 1.1.2 1.1.3
autocfg 1.1.0 1.2.0
bumpalo 3.14.0 3.15.4
bytemuck 1.14.0 1.15.0
bytes 1.5.0 1.6.0
cc 1.0.83 1.0.90
cookie 0.18.0 0.18.1
cpufeatures 0.2.11 0.2.12
crc32fast 1.3.2 1.4.0
crossbeam-queue 0.3.10 0.3.11
crossbeam-utils 0.8.18 0.8.19
der 0.7.8 0.7.9
deranged 0.3.10 0.3.11
either 1.9.0 1.10.0
fastrand 2.0.1 2.0.2
figment 0.10.12 0.10.15
futures-timer 3.0.2 3.0.3
getrandom 0.2.11 0.2.12
h2 0.3.24 0.3.26
hermit-abi 0.3.3 0.3.9
http 0.2.11 0.2.12
hyper-tls 0.5.0 0.6.0
iana-time-zone 0.1.58 0.1.60
indexmap 2.1.0 2.2.6
is-terminal 0.4.9 0.4.12
itertools 0.12.0 0.12.1
itoa 1.0.10 1.0.11
js-sys 0.3.66 0.3.69
libc 0.2.151 0.2.153
libz-sys 1.1.12 1.1.16
linux-raw-sys 0.4.12 0.4.13
maud_macros 0.25.0 0.26.0
memchr 2.6.4 2.7.2
miniz_oxide 0.7.1 0.7.2
num-integer 0.1.45 0.1.46
num-iter 0.1.43 0.1.44
num-traits 0.2.17 0.2.18
openssl 0.10.62 0.10.64
openssl-sys 0.9.98 0.9.102
pear 0.2.8 0.2.9
pear_codegen 0.2.8 0.2.9
pin-project-lite 0.2.13 0.2.14
pkg-config 0.3.28 0.3.30
proc-macro2 1.0.71 1.0.79
quanta 0.12.2 0.12.3
quote 1.0.33 1.0.35
regex 1.10.2 1.10.4
ring 0.17.7 0.17.8
rustix 0.38.28 0.38.32
ryu 1.0.16 1.0.17
security-framework-sys 2.9.1 2.10.0
semver 1.0.20 1.0.22
serde_yaml 0.9.29 0.9.34+deprecated
smallvec 1.11.2 1.13.2
socket2 0.5.5 0.5.6
sqlx-core 0.7.3 0.7.4
sqlx-macros 0.7.3 0.7.4
sqlx-macros-core 0.7.3 0.7.4
sqlx-mysql 0.7.3 0.7.4
sqlx-postgres 0.7.3 0.7.4
sqlx-sqlite 0.7.3 0.7.4
tempfile 3.8.1 3.10.1
thiserror 1.0.52 1.0.58
thiserror-impl 1.0.52 1.0.58
thread_local 1.1.7 1.1.8
time 0.3.31 0.3.34
time-macros 0.2.16 0.2.17
tokio-stream 0.1.14 0.1.15
toml 0.8.8 0.8.12
toml_edit 0.21.0 0.22.9
uncased 0.9.9 0.9.10
unicode-bidi 0.3.14 0.3.15
unicode-normalization 0.1.22 0.1.23
unicode-segmentation 1.10.1 1.11.0
unsafe-libyaml 0.2.10 0.2.11
wasm-bindgen 0.2.89 0.2.92
wasm-bindgen-backend 0.2.89 0.2.92
wasm-bindgen-futures 0.4.39 0.4.42
wasm-bindgen-macro 0.2.89 0.2.92
wasm-bindgen-macro-support 0.2.89 0.2.92
wasm-bindgen-shared 0.2.89 0.2.92
web-sys 0.3.66 0.3.69
whoami 1.4.1 1.5.1
windows-core 0.51.1 0.52.0
winnow 0.5.31 0.6.5
yansi 1.0.0-rc.1 1.0.1

Updates sqlx from 0.7.3 to 0.7.4

Changelog

Sourced from sqlx's changelog.

0.7.4 - 2024-03-11

38 pull requests were merged this release cycle.

This is officially the last release of the 0.7.x release cycle.

As of this release, development of 0.8.0 has begun on main and only high-priority bugfixes may be backported.

Added

  • [#2891]: feat: expose getters for connect options fields [[@​saiintbrisson]]
  • [#2902]: feat: add to_url_lossy to connect options [[@​lily-mosquitoes]]
  • [#2927]: Support query! for cargo-free systems [[@​kshramt]]
  • [#2997]: doc(FAQ): add entry explaining prepared statements [[@​abonander]]
  • [#3001]: Update README to clarify MariaDB support [[@​iangilfillan]]
  • [#3004]: feat(logging): Add numeric elapsed time field elapsed_secs [[@​iamjpotts]]
  • [#3007]: feat: add raw_sql API [[@​abonander]]
    • This hopefully makes it easier to find how to execute statements which are not supported by the default prepared statement interfaces query*() and query!().
    • Improved documentation across the board for the query*() functions.
    • Deprecated: execute_many() and fetch_many() on interfaces that use prepared statements.
      • Multiple SQL statements in one query string were only supported by SQLite because its prepared statement interface is the only way to execute SQL. All other database flavors forbid multiple statements in one prepared statement string as an extra defense against SQL injection.
      • The new raw_sql API retains this functionality because it explicitly does not use prepared statements. Raw or text-mode query interfaces generally allow multiple statements in one query string, and this is supported by all current databases. Due to their nature, however, one cannot use bind parameters with them.
      • If this change affects you, an issue is open for discussion: launchbadge/sqlx#3108
  • [#3011]: Added support to IpAddr with MySQL/MariaDB. [[@​Icerath]]
  • [#3013]: Add default implementation for PgInterval [[@​pawurb]]
  • [#3018]: Add default implementation for PgMoney [[@​pawurb]]
  • [#3026]: Update docs to reflect support for MariaDB data types [[@​iangilfillan]]
  • [#3037]: feat(mysql): allow to connect with mysql driver without default behavor [[@​darkecho731]]

Changed

... (truncated)

Commits
  • 635dba5 fix: deprecation in postgres::types::chrono
  • a2b89d7 fix: deprecation warnings in sqlite::types::chrono, document DATETIME beh...
  • 248d617 chore: prepare 0.7.4 release
  • d005111 fix: better I/O errors when migrate!() cannot read a file
  • 24be262 fix: restore Migrator to the public API
  • bbfd0d7 fix: AnyRow not support PgType::Varchar (#2976)
  • b29eab0 feat: add to_url_lossy to connect options (#2902)
  • 34860b7 fix(ci): just cfg-out the whole tests/sqlite/sqlcipher.rs
  • 791a7f5 doc(pg): document behavior of bigdecimal and rust_decimal with out-of-ran...
  • e5c18b3 fix: gate sqlcipher testing behind cfg to make development less annoying
  • Additional commits viewable in compare view


Updates log from 0.4.20 to 0.4.21

Changelog

Sourced from log's changelog.

[0.4.21] - 2024-02-27

What's Changed

New Contributors

Commits
  • 3ccdc28 Merge pull request #617 from rust-lang/cargo/0.4.21
  • 6153cb2 prepare for 0.4.21 release
  • f0f7494 Merge pull request #613 from rust-lang/feat/kv-cleanup
  • 2b220bf clean up structured logging example
  • 646e9ab use original Visitor name for VisitValue
  • cf85c38 add needed subfeatures to kv_unstable
  • 73e9539 fix up capturing of :err
  • 31bb4b0 move error macros together
  • ad91711 support field shorthand in macros
  • 90a347b restore removed APIs as deprecated
  • Additional commits viewable in compare view


Updates chrono from 0.4.31 to 0.4.37

Release notes

Sourced from chrono's releases.

v0.4.37

Version 0.4.36 introduced an unexpected breaking change and was yanked. In it LocalResult was renamed to MappedLocalTime to avoid the impression that it is a Result type were some of the results are errors. For backwards compatibility a type alias with the old name was added.

As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with use chrono::LocalResult::*. With 0.4.37 we make the new name MappedLocalTime the alias, but keep using it in function signatures and the documentation as much as possible.

See also the release notes of chrono 0.4.36 from yesterday for the yanked release.

v0.4.36

This release un-deprecates the methods on TimeDelta that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.

New is the DateTime::with_time() method. As an example of when it is useful:

use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());

Additions

  • Add DateTime::with_time() (#1510)

Deprecations

  • Revert TimeDelta deprecations (#1543)
  • Deprecate TimeStamp::timestamp_subsec_nanos, which was missed in the 0.4.35 release (#1486)

Documentation

  • Correct version number of deprecation notices (#1486)
  • Fix some typos (#1505)
  • Slightly improve serde documentation (#1519)
  • Main documentation: simplify links and reflow text (#1535)

Internal

  • CI: Lint benchmarks (#1489)
  • Remove unnessary Copy and Send impls (#1492, thanks @​erickt)
  • Backport streamlined NaiveDate unit tests (#1500, thanks @​Zomtir)
  • Rename LocalResult to TzResolution, add alias (#1501)
  • Update windows-bindgen to 0.55 (#1504)
  • Avoid duplicate imports, which generate warnings on nightly (#1507)
  • Add extra debug assertions to NaiveDate::from_yof (#1518)
  • Some small simplifications to DateTime::date_naive and NaiveDate::diff_months (#1530)
  • Remove unwrap in Unix Local type (#1533)
  • Use different method to ignore feature-dependent doctests (#1534)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

v0.4.35

Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.

The most significant changes in this release are two sets of deprecations.

  • We deprecated all timestamp-related methods on NaiveDateTime. The reason is that a timestamp is defined to be in UTC. The NaiveDateTime type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the DateTime<Utc> type, or from the TimeZone trait.

... (truncated)

Commits
  • 7d62045 Prepare 0.4.37
  • 6857d00 Hide re-export of LocalResult in docs
  • 9e22e48 Swap MappedLocalTime and LocalResult type alias
  • ca3c3b6 Prepare 0.4.36
  • 1850198 Revert TimeDelta deprecations
  • e05ba8b Add MappedLocalTime::and_then
  • 3adfd88 Main documentation: simplify links and reflow text
  • 1e8df65 Rustfmt doc comments
  • 1b57859 Run doctests with alloc feature if possible
  • 6f2c7cc Use different method to run feature-dependent doctests
  • Additional commits viewable in compare view


Updates serde_json from 1.0.108 to 1.0.109

Release notes

Sourced from serde_json's releases.

v1.0.109

  • Documentation improvements
Commits
  • f88bf1f Release 1.0.109
  • bb62c73 Merge pull request #1097 from serde-rs/doccfg
  • df36d10 Restore doc cfg on re-exports
  • c367091 Merge pull request #1095 from dtolnay/hashtest
  • b328ee7 Eliminate hash closure in favor of calling hash_one directly
  • b9bcbad Use BuildHasher::hash_one
  • 7ff6c9e Use random hasher state for number hashing test
  • fe031cd Delete trace_macros! functionality from test
  • 05196ca Update ui test suite to nightly-2023-11-19
  • See full diff in compare view


Updates maud from 0.25.0 to 0.26.0

Release notes

Sourced from maud's releases.

v0.26.0

  • Remove AsRef<str> restriction from PreEscaped #377
  • Implement Render for Arc<T> #380
  • Fix missing parentheses around splices #382 #383
  • Accept literals in attribute names #396 #398 #415
  • Support axum v0.7 through axum-core v0.4 and http v1 #401
  • Add support for warp v0.3.6 #404
  • Support rocket v0.5 #406
Changelog

Sourced from maud's changelog.

[0.26.0] - 2024-01-15

  • Remove AsRef<str> restriction from PreEscaped #377
  • Implement Render for Arc<T> #380
  • Fix missing parentheses around splices #382 #383
  • Accept literals in attribute names #396 #398 #415
  • Support axum v0.7 through axum-core v0.4 and http v1 #401
  • Add support for warp v0.3.6 #404
  • Support rocket v0.5 #406
Commits


Updates tokio from 1.35.1 to 1.37.0

Release notes

Sourced from tokio's releases.

Tokio v1.37.0

1.37.0 (March 28th, 2024)

Added

  • fs: add set_max_buf_size to tokio::fs::File (#6411)
  • io: add try_new and try_with_interest to AsyncFd (#6345)
  • sync: add forget_permits method to semaphore (#6331)
  • sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • sync: add a rwlock() method to owned RwLock guards (#6418)
  • sync: expose strong and weak counts of mpsc sender handles (#6405)
  • sync: implement Clone for watch::Sender (#6388)
  • task: add TaskLocalFuture::take_value (#6340)
  • task: implement FromIterator for JoinSet (#6300)

Changed

  • io: make io::split use a mutex instead of a spinlock (#6403)

Fixed

  • docs: fix docsrs build without net feature (#6360)
  • macros: allow select with only else branch (#6339)
  • runtime: fix leaking registration entries when os registration fails (#6329)

Documented

  • io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • io: document cancel safety of AsyncReadExt's primitive read functions (#6337)
  • runtime: add doc link from Runtime to #[tokio::main] (#6366)
  • runtime: make the enter example deterministic (#6351)
  • sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • sync: fix missing period in broadcast docs (#6377)
  • sync: mark mpsc::Sender::downgrade with #[must_use] (#6326)
  • sync: reorder const_new before new_with (#6392)
  • sync: update watch channel docs (#6395)
  • task: fix documentation links (#6336)

Changed (unstable)

  • runtime: include task Id in taskdumps (#6328)
  • runtime: panic if unhandled_panic is enabled when not supported (#6410)

#6300: tokio-rs/tokio#6300 #6326: tokio-rs/tokio#6326 #6328: tokio-rs/tokio#6328 #6329: tokio-rs/tokio#6329 #6331: tokio-rs/tokio#6331 #6336: tokio-rs/tokio#6336 #6337: tokio-rs/tokio#6337

... (truncated)

Commits
  • 9c337ca chore: prepare Tokio v1.37.0 (#6435)
  • e542501 io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • 4601c84 stream: add next_many and poll_next_many to StreamMap (#6409)
  • deff252 util: document cancel safety of SinkExt::send and StreamExt::next (#6417)
  • 4565b81 sync: add a rwlock() method to owned RwLock guards (#6418)
  • 3ce4720 sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • 8342e4b util: assert compatibility between LengthDelimitedCodec options (#6414)
  • 4c453e9 readme: add description about benchmarks (#6425)
  • 1846483 sync: expose strong and weak counts of mpsc sender handles (#6405)
  • baad270 sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • Additional commits viewable in compare view


Updates reqwest from 0.11.23 to 0.12.2

Release notes

Sourced from reqwest's releases.

v0.12.2

What's Changed

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.1...v0.12.2

v0.12.1

What's Changed

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.12.1

v0.12.0

What's Changed

  • Upgrade to hyper, http, and http-body v1.
  • Add better support for converting to and from http::Request and http::Response.
  • Add http2 optional cargo feature, default on.
  • Add charset optional cargo feature, default on.
  • Add macos-system-configuration cargo feature, default on.
  • Change all optional dependencies to no longer be exposed as implicit features.
  • Add ClientBuilder::interface(str) to specify the local interface to bind to.
  • Experimental: disables the http3 feature temporarily.

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.27...v0.12.0

v0.11.27

What's Changed

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.26...v0.11.27

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.2

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

v0.12.1

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

v0.12.0

  • Upgrade to hyper, http, and http-body v1.
  • Add better support for converting to and from http::Request and http::Response.
  • Add http2 optional cargo feature, default on.
  • Add charset optional cargo feature, default on.
  • Add macos-system-configuration cargo feature, default on.
  • Change all optional dependencies to no longer be exposed as implicit features.
  • Add ClientBuilder::interface(str) to specify the local interface to bind to.
  • Experimental: disables the http3 feature temporarily.

v0.11.27

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.

v0.11.25

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

v0.11.24

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.
Commits
  • 6768a8e v0.12.2
  • fff307b fix(connect): ALPN missed when using socks5 proxy with rustls backend (#2164)
  • 04bf45f fix: tls version limit for rustls (#2203)
  • 056f8c4 fix(connect): not negotiate h2 when using native-tls backend (#2165)
  • e0ea15b v0.12.1
  • 3d78fcb fix: Display for Error shouldn't include source (#2199)
  • c535724 Fix binding interface when no TLS is used (#2200)
  • d5adcba fix: rustls extraction of TlsInfo::peer_certificate() being truncated (#2195)
  • 7a5df21 fix: could panic if http2 disabled but TLS negotiated h2 (#2194)
  • d5051f9 Update version number in Readme
  • Additional commits viewable in compare view


Updates async-trait from 0.1.75 to 0.1.76

Release notes

Sourced from async-trait's releases.

0.1.76

  • Documentation improvements
Commits
  • 627124b Release 0.1.76
  • f8aa269 Merge pull request #256 from dtolnay/miritracing
  • 48e29e4 Re-enable tracing integration test under Miri
  • 3c656d3 Merge pull request #255 from dtolnay/asyncblock
  • 381fd75 Update explanation to show async block expansion
  • 3caf301 Merge pull request #254 from dtolnay/doc
  • c1576be Update documentation to discuss object safety in Rust 1.75+
  • See full diff in compare view


Updates jsonwebtoken from 9.2.0 to 9.3.0

Changelog

Sourced from jsonwebtoken's changelog.

9.3.0 (2024-03-12)

  • Add Validation.reject_tokens_expiring_in_less_than, the opposite of leeway
Commits


Updates base64 from 0.21.5 to 0.22.0

Changelog

Sourced from base64's changelog.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

0.21.7

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

0.21.6

  • Improved introductory documentation and example
Commits
  • 5d70ba7 Merge pull request #269 from marshallpierce/mp/decode-precisely
  • efb6c00 Release notes
  • 2b91084 Add some tests to boost coverage
  • 9e9c7ab Engine::internal_decode now returns DecodeSliceError
  • a8a60f4 Decode main loop improvements
  • a25be06 Simplify leftover output writes
  • 9979cc3 Keep morsels as separate bytes
  • 37670c5 Bump dev toolchain version (#268)
  • 9652c78 v0.21.7
  • 08deccf provide as_str() method to return the alphabet characters (#264)
  • Additional commits viewable in compare view


Updates bcrypt from 0.15.0 to 0.15.1

Commits


Updates ahash from 0.8.6 to 0.8.11

Release notes

Sourced from ahash's releases.

v0.8.11

Patch release to further strengthen u64 fastpath based on #210

Full Changelog: https://github.com/tkaitchuck/aHash/compare/v0.8.10...v0.8.11

v0.8.10

Patch to fix #210 which caused poor distribution when hashing a single u64 on nightly.

Full Changelog: https://github.com/tkaitchuck/aHash/compare/v0.8.9...v0.8.10

v0.8.9

Minor patch to fix #207

Full Changelog: https://github.com/tkaitchuck/aHash/compare/v0.8.8...v0.8.9

v0... _Description has been truncated_

codecov[bot] commented 3 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 21.85%. Comparing base (f5db246) to head (8e4dd5e).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #104 +/- ## ========================================== + Coverage 21.60% 21.85% +0.24% ========================================== Files 111 111 Lines 8354 8306 -48 ========================================== + Hits 1805 1815 +10 + Misses 6549 6491 -58 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

stadust commented 3 months ago

LOL, so that's why it took over an hour and multiple time outs to open the PR