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 6 updates #110

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the pointercrate group with 6 updates:

Package From To
reqwest 0.12.2 0.12.3
cc 1.0.90 1.0.91
getrandom 0.2.12 0.2.13
rustls-pemfile 1.0.4 2.1.2
rustversion 1.0.14 1.0.15
winreg 0.50.0 0.52.0

Updates reqwest from 0.12.2 to 0.12.3

Release notes

Sourced from reqwest's releases.

v0.12.3

What's Changed

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

New Contributors

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

Changelog

Sourced from reqwest's changelog.

v0.12.3

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.
Commits
  • 0720159 v0.12.3
  • 9209695 Remove duplicate example for ClientBuilder::default_headers (#2236)
  • e3a1565 fix: use lower case domain string when using resolve and resolve_to_addrs...
  • b4c491a feat: allow fine-grained root certs for rustls (#2232)
  • cf4295d chore: update winreg to 0.52.0 (#2226)
  • db25e80 chore: upgrade base64 to 0.22 (#2224)
  • 13e27b7 fix: response body timeout forwards the size hint
  • 872af0c refactor: upgrade to rustls-pemfile 2 (#2222)
  • 68a3f58 fix: stop sending content-length: 0 for GET requests (#2207)
  • 14e46ff FromStr trait implementation for Name (#2212)
  • See full diff in compare view


Updates cc from 1.0.90 to 1.0.91

Release notes

Sourced from cc's releases.

1.0.91

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.90...1.0.91

Commits
  • c9b0850 Release cc 1.0.91 (#1024)
  • d902ed3 fix(env_tool): return None if env is empty (#1021)
  • fd912ec fix llvm-ar as archiver for msvc targets; fix clang-cl detection; fix assembl...
  • be62f4a Fix caching of supported compiler flag (#1002)
  • bbae474 Also shim llvm-ar in the clang_android test on non-Windows (#1016)
  • 0195ebf Fix regression in compiler family detection (#1014)
  • 30c6b72 refactor: Optimize code based on cargo clippy suggestions (#1013)
  • f36d6a7 Fix compile family detection: Use C macros instead of $compiler -v (#1000)
  • 77a54a9 Fix safety comment for LibraryHandle::get_proc_address (#1010)
  • abf67d7 feat: Query rustc for clang target triples instead of hardcoding them (#1004)
  • Additional commits viewable in compare view


Updates getrandom from 0.2.12 to 0.2.13

Changelog

Sourced from getrandom's changelog.

[0.2.13] - 2024-04-06

Added

  • linux_disable_fallback crate feature to disable /dev/urandom-based fallback on Linux and Android targets. Enabling this feature bumps minimum supported Linux kernel version to 3.17 and Android API level to 23 (Marshmallow). #396

Changed

  • Disable /dev/urandom fallback for Linux targets outside of the following target_arches: aarch64, arm, powerpc, powerpc64, s390x, x86, x86_64 #396
  • Do not catch EPERM error code on Android while checking availability of the getrandom syscall #396

#396: rust-random/getrandom#396

Commits


Updates rustls-pemfile from 1.0.4 to 2.1.2

Release notes

Sourced from rustls-pemfile's releases.

2.1.2

Dependency updates.

What's Changed

New Contributors

Full Changelog: https://github.com/rustls/pemfile/compare/v/2.1.1...v/2.1.2

2.1.1

Headlines

  • Leading whitespace in PEM document bodies is now trimmed in addition to trailing whitespace.

What's Changed

Full Changelog: https://github.com/rustls/pemfile/compare/v/2.1.0...v/2.1.1

2.1.0

Headlines

  • Adds the csr function and the Item::Csr variant to support loading DER encoded Certificate Signing Requests (CSRs) from PEM inputs.

What's Changed

New Contributors

Full Changelog: https://github.com/rustls/pemfile/compare/v/2.0.0...v/2.1.0

2.0.0

Headlines

  • Improving API stability. This crate now uses types from rustls-pki-types; we expect this to reduce the number of breaking changes in rustls ecosystem. As part of this, the Item enum's variants got renamed from Item::{RSAKey, PKCS8Key, ECKey} to Item::{Pkcs1Key, Pkcs8Key, Sec1Key}.
  • no_std support. This crate can now work optionally without std: use the new read_one_from_slice API.

What's Changed

... (truncated)

Commits
  • 7ba4ab7 Delete obsolete release history section
  • 07686b2 Cargo: version 2.1.1 -> 2.1.2
  • 48ab234 Fixed warnings from rust nightly
  • d7b1215 Bump base64 from 0.21.5 to 0.22.0
  • 77a6c99 Cargo: version 2.1.0 -> 2.1.1
  • 09a08fd proj: add Cargo.lock, use --locked in CI
  • 95152b4 pemfile: also trim leading contiguous content whitespace
  • fc3414f lib: clean up no_std and use of std in test code
  • e2d220a Cargo: version 2.0.0 -> 2.1.0
  • de3d0ae add certificate signing request
  • Additional commits viewable in compare view


Updates rustversion from 1.0.14 to 1.0.15

Release notes

Sourced from rustversion's releases.

1.0.15

  • Recognize $RUSTC_WRAPPER environment variable (#47)
Commits
  • 70ca5ad Release 1.0.15
  • 0fa74f5 Merge pull request #47 from dtolnay/rustcwrapper
  • 51f46e2 Apply RUSTC_WRAPPER
  • df7e51d Explicitly install a Rust toolchain for cargo-outdated job
  • 5e54059 Test docs.rs documentation build in CI
  • 5f73c91 Update actions/checkout@v3 -> v4
  • 2a58661 Resolve ignored_unit_patterns pedantic clippy lint
  • f4bbc8f Resolve redundant_guards clippy lint
  • dda672e Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"
  • f9d72db Temporarily disable -Zrandomize-layout due to rustc ICE
  • See full diff in compare view


Updates winreg from 0.50.0 to 0.52.0

Release notes

Sourced from winreg's releases.

0.52.0 (windows-rs)

  • Breaking change: .commit() and .rollback() now consume the transaction (#62)
  • Add RegKey::rename_subkey() method (#58)
  • Make serialization modules public (#59)
  • Fix UB in FromRegValue for u32 and u64 (#61)

0.51.0 (windows-sys)

  • Breaking change: fix std::fmt::Display implementation for RegValue (#52)
  • Add RegKey::encode_transacted() method (pullrequest #55), fixes #54)
Changelog

Sourced from winreg's changelog.

0.52.0

  • Breaking change: .commit() and .rollback() now consume the transaction (#62)
  • Add RegKey::rename_subkey() method (#58)
  • Make serialization modules public (#59)
  • Fix UB in FromRegValue for u32 and u64 (#61)

0.14.0

  • Breaking change: increase MSRV to 1.34
  • Fix UB in FromRegValue for u32 and u64 (#61)

0.13.0

  • Breaking change: .commit() and .rollback() now consume the transaction (#62)
  • Add RegKey::rename_subkey() method (#58)
  • Make serialization modules public (#59)

0.12.0, 0.51.0

  • Breaking change: fix std::fmt::Display implementation for RegValue (#52)
  • Add RegKey::encode_transacted() method (pullrequest #55, fixes #54)
Commits
  • 1c56127 Merge branch 'winapi'. Bump version to 0.52.0
  • 4b0ba3e Bump version to 0.14.0
  • 7634148 Fix UB in FromRegValue for u32 and u64
  • 9aea2ad Bump version to 0.13.0
  • 5312581 Fix build with rust 1.31
  • ecda498 Make serialization modules public.
  • 0fd5bb8 .commit() and .rollback() now consume the transaction
  • fa2f1c8 Add RegKey::rename_subkey() method
  • fc6521e Fix build with rust 1.46
  • 60c4210 Merge branch 'winapi'
  • Additional commits viewable 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