clearloop / leetcode-cli

May the code be with you 👻
MIT License
308 stars 49 forks source link

chore(dep): bump the deps group with 10 updates #143

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the deps group with 10 updates:

Package From To
async-trait 0.1.74 0.1.76
tokio 1.35.0 1.35.1
clap 4.4.11 4.4.12
keyring 2.1.0 2.3.0
openssl 0.10.61 0.10.62
pyo3 0.20.0 0.20.1
serde_json 1.0.108 1.0.109
anyhow 1.0.75 1.0.78
clap_complete 4.4.4 4.4.5
thiserror 1.0.51 1.0.53

Updates async-trait from 0.1.74 to 0.1.76

Release notes

Sourced from async-trait's releases.

0.1.76

  • Documentation improvements

0.1.75

  • 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+
  • 034d8db Release 0.1.75
  • 0d469fc Add a funding file
  • b4a3886 Update ui test suite to nightly-2023-11-20
  • Additional commits viewable in compare view


Updates tokio from 1.35.0 to 1.35.1

Release notes

Sourced from tokio's releases.

Tokio v1.35.1

1.35.1 (December 19, 2023)

This is a forward part of a change that was backported to 1.25.3.

Fixed

  • io: add budgeting to tokio::runtime::io::registration::async_io (#6221)

#6221: tokio-rs/tokio#6221

Commits


Updates clap from 4.4.11 to 4.4.12

Release notes

Sourced from clap's releases.

v4.4.12

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Changelog

Sourced from clap's changelog.

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Commits
  • 6d601e6 chore: Release
  • 048e7f0 docs: Update changelog
  • 53f5b82 Merge pull request #5267 from vermiculus/sa/avoid-pv-expansion-in-help
  • 05cd057 perf: Avoid retrieving possible_values unless used
  • 2920808 test: Update snapshots
  • 28763eb chore: Release
  • ace7bb5 docs(complete): Update changelog
  • 76beca4 docs(complete): Polish API reference for dynamic
  • 3630e58 Merge pull request #5273 from epage/docsrs
  • 3724b9e docs: Include more content on docs.rs
  • See full diff in compare view


Updates keyring from 2.1.0 to 2.3.0

Release notes

Sourced from keyring's releases.

v2.3.0: Support OpenBSD

Thanks to @​klemensn, this release should build and run on OpenBSD.

v2.2.0: rework default feature set

In response to #153 and #148, suppressing the default feature set now suppresses the platform keystore dependencies on all platforms and uses the mock keystore as the default.

PLEASE NOTE: While this behavior is a breaking change on Mac, Windows, and FreeBSD, the behavior on those platforms before was unintended and undefined (suppressing default features did nothing), so this is considered a bug fix rather than a semver-breaking change that requires a major version bump.

Commits


Updates openssl from 0.10.61 to 0.10.62

Release notes

Sourced from openssl's releases.

openssl-v0.10.62

What's Changed

New Contributors

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62

Commits
  • 4c98550 Merge pull request #2133 from alex/bump-for-release
  • c2c52d8 Release openssl v0.10.62 and openssl-sys v0.9.98
  • 5176570 Merge pull request #2129 from nicklaswj/add_curve_brainpoolP320r1
  • f6ed2c0 Add nid for curve brainpoolP320r1
  • 994939b Merge pull request #2126 from overvenus/rand-priv-bytes
  • 6d2fce2 Fix legacy OpenSSL build
  • ec8f096 Add rand_priv_bytes
  • 5b4edd8 Merge pull request #2124 from botovq/libressl-390
  • 4d83202 X509V3_EXT_add_alias() will be removed
  • 8a4db4b X509_PURPOSE_get0() will return a const pointer
  • Additional commits viewable in compare view


Updates pyo3 from 0.20.0 to 0.20.1

Release notes

Sourced from pyo3's releases.

PyO3 0.20.1

This release is a maintenance release to resolve a clippy warning which triggers on function arguments of Py<Self>.

This release also contains a few minor API additions, including optional support for the either and smallvec crates.

Thank you to the following users for the improvements:

@​adamreichold @​aldanor @​alex @​daemontus @​davidhewitt @​mejrs @​messense @​neachdainn @​orhun @​suriya-ganesh @​wyfo

Changelog

Sourced from pyo3's changelog.

[0.20.1] - 2023-12-30

Added

  • Add optional either feature to add conversions for either::Either<L, R> sum type. #3456
  • Add optional smallvec feature to add conversions for smallvec::SmallVec. #3507
  • Add take and into_inner methods to GILOnceCell #3556
  • #[classmethod] methods can now also receive Py<PyType> as their first argument. #3587
  • #[pyfunction(pass_module)] can now also receive Py<PyModule> as their first argument. #3587
  • Add traverse method to GILProtected. #3616
  • Added abi3-py312 feature #3687

Fixed

  • Fix minimum version specification for optional chrono dependency. #3512
  • Silenced new clippy::unnecessary_fallible_conversions warning when using a Py<Self> self receiver. #3564
Commits
  • d3f034a release: 0.20.1
  • 985412f ci: updates for Rust 1.75
  • ecb0e9c Copy note on using check_signals on non-main thread/interpreter from Python d...
  • b842711 Fixes #3645 -- added abi3-py312 feature
  • d897479 Fix the Crossbeam ecosystem to point releases before it required Rust 1.61.
  • 8f6976d Enable GILProtected access via PyVisit
  • 5c1e4d1 ci: fixup pytests to compile in debug
  • 1896a32 ci: refactor pytests dev dependencies
  • 7032789 Add additional definitions for _PyImport_Frozen*
  • 1166a99 Refactor create_type_object so that most of the code is monomorphic
  • 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 anyhow from 1.0.75 to 1.0.78

Release notes

Sourced from anyhow's releases.

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 38c79ef Release 1.0.78
  • ded2295 Merge pull request #337 from dtolnay/bootstrap
  • ae45b67 Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 2d32366 Update crate name used for build script probe
  • d10baed Move ExitStatus::success check into compile_probe()
  • 290c450 Merge pull request #336 from dtolnay/optionifletelse
  • 6b231dd Remove option_if_let_else clippy suppression from build script
  • eb66ff5 Merge pull request #335 from dtolnay/cargoenvvar
  • b1590b1 Require cargo promised environment variables to be present
  • 15646f4 Merge pull request #334 from dtolnay/probe
  • Additional commits viewable in compare view


Updates clap_complete from 4.4.4 to 4.4.5

Release notes

Sourced from clap_complete's releases.

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Changelog

Sourced from clap_complete's changelog.

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Commits


Updates thiserror from 1.0.51 to 1.0.53

Release notes

Sourced from thiserror's releases.

1.0.53

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#270)

1.0.52

  • Fix interaction with RUSTC_BOOTSTRAP (#269)
Commits
  • af28d9c Release 1.0.53
  • c22822c Merge pull request #275 from dtolnay/probers
  • 8722399 Rerun build script on changes to probe.rs
  • 0e280fe Merge pull request #274 from dtolnay/bootstrap
  • f334cfc Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 5fd9537 Update crate name used for build script probe
  • a9b1585 Move ExitStatus::success check into compile_probe()
  • 0f349a4 Remove needless_raw_string_hashes clippy pedantic suppression from build script
  • c1c003f Merge pull request #273 from dtolnay/cargoenvvar
  • 9b7356f Require cargo promised environment variables to be present
  • 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