Skip to content

⬆️ Update Rust Crates - #82

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-crates
Open

⬆️ Update Rust Crates#82
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-crates

Conversation

@renovate

@renovate renovate Bot commented Mar 25, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.1021.0.104
async-trait dependencies patch 0.1.890.1.91
axum dependencies patch 0.8.80.8.9
base64 dependencies minor 0.220.23
chrono dependencies patch 0.4.440.4.45
clap dependencies patch 4.6.04.6.4
config dependencies patch 0.15.220.15.25
dashmap dependencies minor 6.1.06.2.1
hmac dependencies minor 0.120.13
maxminddb dependencies minor 0.270.30
rand (source) dependencies patch 0.10.00.10.2
reqwest dependencies patch 0.13.20.13.4
rust-embed dependencies minor 8.11.08.12.0
serde (source) dependencies patch 1.0.2281.0.229
serde_json dependencies patch 1.0.1491.0.151
sha2 dependencies minor 0.100.11
sqlx dependencies minor 0.80.9
statrs build-dependencies minor 0.180.19
statrs dependencies minor 0.180.19
thiserror dependencies patch 2.0.182.0.19
tokio (source) dependencies minor 1.50.01.53.1
tower-http dependencies minor 0.60.7

Release Notes

dtolnay/anyhow (anyhow)

v1.0.104

Compare Source

  • Update syn dev-dependency to version 3

v1.0.103

Compare Source

  • Fix Stacked Borrows violation (UB) in Error::downcast_mut (#​451, #​452)
dtolnay/async-trait (async-trait)

v0.1.91

Compare Source

v0.1.90

Compare Source

  • Update to syn 3
tokio-rs/axum (axum)

v0.8.9

Compare Source

  • added: WebSocketUpgrade::{requested_protocols, set_selected_protocol} for more flexible subprotocol selection (#​3597)
  • changed: Update minimum rust version to 1.80 (#​3620)
  • fixed: Set connect endpoint on correct field in MethodRouter (#​3656)
  • fixed: Return specific error message when multipart body limit is exceeded (#​3611)
marshallpierce/rust-base64 (base64)

v0.23.0

Compare Source

  • Added more consts for preconfigured configs and engines
  • Make DecodeError::InvalidLastSymbol more clear by including the decoded value
  • Added SIMD-accelerated engines behind the default-on simd-unsafe feature: Simd picks the best
    instruction set at runtime (AVX2 on x86_64, NEON on aarch64) and falls back to the scalar
    GeneralPurpose engine, while Avx2 and Neon target one instruction set with no runtime
    detection and work in no_std. The engines support the standard and URL-safe alphabets.
  • Update MSRV to 1.71.0
  • Add support for custom padding symbols
chronotope/chrono (chrono)

v0.4.45: 0.4.45

Compare Source

What's Changed

clap-rs/clap (clap)

v4.6.4

Compare Source

Internal
  • Update to syn v3

v4.6.3

Compare Source

Fixes
  • (derive) Allow "literal".function() as attribute values

v4.6.2

Compare Source

Fixes
  • (help) Say alias when there is only one

v4.6.1

Compare Source

Fixes
  • (derive) Ensure rebuilds happen when an read env variable is changed
rust-cli/config-rs (config)

v0.15.25

Compare Source

Fixes
  • (ron) Support u64, and not just i64

v0.15.24

Compare Source

Fixes
  • (json) Support u64, and not just i64

v0.15.23

Compare Source

Fixes
  • Environment::convert_case: correctly apply casing to each key segment
xacrimon/dashmap (dashmap)

v6.2.1

Compare Source

This is an interim maintenance release for the existing v6 branch before v7 can be released. This bumps the MSRV to 1.85 and updates dependencies to their latest versions.

RustCrypto/MACs (hmac)

v0.13.0

Compare Source

oschwald/maxminddb-rust (maxminddb)

v0.30.0

Compare Source

  • Added deserialize_any_with_raw_strings() for Serde-based format adapters
    to validate MMDB strings while constructing another runtime's native string
    type, avoiding duplicate UTF-8 validation without unsafe Rust. Adapters
    remain responsible for strict UTF-8 validation.
  • Fixed network iteration on cyclic or over-deep corrupt search trees so it
    returns an error instead of looping indefinitely.
  • Fixed decode_path() error rendering for extreme negative indexes and
    reduced path traversal header parsing.
  • Removed decoder logging checks from hot deserialization paths.
  • Fixed verify() to validate shared data-section pointer targets once, reject
    pointer cycles, invalid scalar encodings, and impossible container sizes.

v0.29.0

Compare Source

  • Breaking: Metadata::build_time() now returns
    Result<SystemTime, MaxMindDbError> instead of panicking on
    unrepresentable timestamps, and databases whose build_epoch cannot be
    represented as SystemTime are rejected as invalid during open and verify.
  • Breaking: Reader::metadata is now private. Use Reader::metadata() to
    access validated metadata by shared reference.
  • Breaking: Opening a database now rejects unsupported major format versions,
    unsupported IP versions, and zero-node search trees. Minor format versions
    are still accepted for forward compatibility.
  • Fixed: within() and networks() now handle IPv6 databases without an
    IPv4 subtree without reading terminal data nodes as tree nodes or
    panicking while formatting low IPv6 networks.
  • Fixed: Skipping ignored or unknown fields now enforces data-section
    bounds and the maximum nesting depth instead of accepting truncated
    values or overflowing the stack on deeply nested corrupt data.
  • Internal: Added focused benchmarks for network iteration and serde
    unknown-field skipping, plus metadata build-time conversion, to guard
    performance-sensitive fixes.
  • Documentation: Fixed intra-doc links so docs build with warnings denied,
    and added a CI check to keep them passing.

v0.28.1

Compare Source

  • Fixed: Databases with an impossible declared search tree size are now
    rejected during open/verify instead of causing runaway allocation
    during validation.
  • Fixed: within() now rejects IPv6 CIDRs on IPv4-only databases instead
    of yielding unrelated networks.
  • Fixed: Verification now rejects truncated scalar/string payloads instead
    of skipping past them and reporting the database as valid.
  • Fixed: LookupResult::network() now uses the reader's measured IPv4
    subtree depth instead of assuming it always begins at bit 96.

v0.28.0

Compare Source

  • Performance improvement: Faster search-tree traversal by dispatching
    on the database's record size to monomorphized node readers, replacing
    per-step branching on the record size.
  • Performance improvement: Direct deserialization of scalars, sequences,
    maps, and structs through dedicated fast paths instead of routing
    through deserialize_any.
  • Performance improvement: IPv4 and IPv6 lookups dispatch to dedicated
    paths, avoiding per-call address-kind checks on the hot path.
  • Behavior change: Deserializing a database array into a tuple or
    tuple struct now returns a decoding error when the lengths do not
    match. Previously the mismatch was silently ignored.
  • Fixed: A corrupt data pointer that would underflow during resolution
    now returns an InvalidDatabase error instead of panicking.
rust-random/rand (rand)

v0.10.2

Compare Source

Fixes
  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#​1790)
Changes
  • Document required output order of fn partial_shuffle and apply #[must_use] (#​1769)
  • Avoid usage of unsafe in contexts where non-local memory corruption could invalidate contract (#​1791)

v0.10.1

Compare Source

This release includes a fix for a soundness bug; see #​1763.

Changes
  • Document panic behavior of make_rng and add #[track_caller] (#​1761)
  • Deprecate feature log (#​1763)
seanmonstar/reqwest (reqwest)

v0.13.4

Compare Source

  • Add ClientBuilder::tls_sslkeylogfile(bool) option to allow using the related environment variable.
  • Add ClientBuilder::http2_keep_alive_* options for the blocking client.
  • Add TLS 1.3 support when using native-tls backend.
  • Fix redirect handling to strip sensitive headers when the scheme changes.
  • Fix HTTP/3 happy-eyeball connection creation.
  • Upgrade hickory-resolver to 0.26.

v0.13.3

Compare Source

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.
serde-rs/serde (serde)

v1.0.229

Compare Source

  • Update to syn 3
serde-rs/json (serde_json)

v1.0.151

Compare Source

v1.0.150

Compare Source

RustCrypto/hashes (sha2)

v0.11.0

Compare Source

launchbadge/sqlx (sqlx)

v0.9.0

Compare Source

Important Announcements
New Github Organization

Shortly after this release is published, the SQLx repository will be transferred to a new GitHub organization:
https://github.com/transact-rs/

This is because SQLx has not been owned or maintained by LaunchBadge, LLC. for a few years now, and has since been
informally transferred to the collective ownership of its principal authors. Moving the repository to a new
organization makes this change more clear, and also allows for potentially inviting outside collaborators.

Cargo.lock Removed from Tracking

The Cargo.lock has been removed from tracking in Git. CI should now always test with the latest versions of
all dependencies by default, alongside our pass that checks with cargo generate-lockfile -Z minimal-versions.

This should eliminate the need for any PRs that update dependencies to also update Cargo.lock or
contend with an endless stream of merge conflicts against it.

N.B. cargo install --locked sqlx-cli will no longer work. However, cargo install sqlx-cli has always
used the latest dependencies by default, ignoring the lockfile, so most users should not be affected. For users
requiring reproducible builds, consider maintaining your own lockfile instead; historically, we only ran cargo update
sporadically, so relying on SQLx's lockfile offered few guarantees anyway.

See the manual page for cargo install for details.

Breaking

As per our MSRV policy, the supported Rust version for this release cycle is 1.94.0.

  • [#​3383]: feat: create sqlx.toml format [[@​abonander]]
    • SQLx and sqlx-cli now support per-crate configuration files (sqlx.toml)
    • New functionality includes, but is not limited to:
      • Rename DATABASE_URL for a crate (for multi-database workspaces)
      • Set global type overrides for the macros (supporting custom types)
      • Rename or relocate the _sqlx_migrations table (for multiple crates using the same database)
      • Set characters to ignore when hashing migrations (e.g. ignore whitespace)
    • More to be implemented in future releases.
    • Enable feature sqlx-toml to use.
    • Guide: see sqlx::_config module in documentation.
    • Reference: [Link]
    • Examples (written for Postgres but can be adapted to other databases; PRs welcome!):
      • Multiple databases using DATABASE_URL renaming and global type overrides: [Link]
      • Multi-tenant database using _sqlx_migrations renaming and multiple schemas: [Link]
      • Force use of chrono when time is enabled (e.g. when using tower-sessions-sqlx-store): [Link]
        • Forcing bigdecimal when rust_decimal is enabled is also shown, but problems with chrono/time are more common.
    • Breaking changes:
      • Significant changes to the Migrate trait
      • sqlx::migrate::resolve_blocking() is now #[doc(hidden)] and thus SemVer-exempt.
  • [#​3486]: fix(logs): Correct spelling of aquired_after_secs tracing field [[@​iamjpotts]]
    • Breaking behavior change: implementations parsing tracing logs from SQLx will need to update the spelling.
  • [#​3495]: feat(postgres): remove lifetime from PgAdvisoryLockGuard [[@​bonsairobo]]
  • [#​3526]: Return &mut Self from the migrator set_ methods [[@​nipunn1313]]
    • Minor breaking change: Migrator::set_ignore_missing and set_locking now return &mut Self instead of &Self
      which may break code in rare circumstances.
  • [#​3541]: Postgres: force generic plan for better nullability inference. [[@​joeydewaal]]
    • Breaking change: may alter the output of the query!() macros for certain queries in Postgres.
  • [#​3613]: fix: RawSql lifetime issues [[@​abonander]]
    • Breaking change: adds DB type parameter to all methods of RawSql
  • [#​3670]: Bump ipnetwork to v0.21.1 [[@​BeauGieskens]]
  • [#​3674]: Implement Decode, Encode and Type for Box, Arc, Cow and Rc [[@​joeydewaal]]
    • Breaking change: impl Decode for Cow now always decodes Cow::Owned, lifetime is unlinked
    • See this discussion for motivation: #​3674 (comment)
  • [#​3723]: Add SqlStr [[@​joeydewaal]]
    • Breaking change: all query*() functions now take impl SqlSafeStr
      which is only implemented for &'static str and AssertSqlSafe.
      For all others, wrap in AssertSqlSafe(<query>).
    • This, along with [#​3960], finally allows returning owned queries as the type will be Query<'static, DB>.
    • SqlSafeStr trait is deliberately similar to std::panic::UnwindSafe,
      serving as a speedbump to warn users about naïvely building queries with format!()
      while allowing a workaround for advanced usage that is easy to spot on code review.
  • [#​3800]: Escape PostgreSQL Options [[@​V02460]]
    • Breaking behavior change: options passed to PgConnectOptions::options() are now automatically escaped.
      Manual escaping of options is no longer necessary and may cause incorrect behavior.
  • [#​3821]: Groundwork for 0.9.0-alpha.1 [[@​abonander]]
    • Increased MSRV to 1.86 and set rust-version
    • Deleted deprecated combination runtime+TLS features (e.g. runtime-tokio-native-tls)
    • Deleted re-export of unstable TransactionManager trait in sqlx.
      • Not technically a breaking change because it's #[doc(hidden)],
        but it will break SeaORM if not proactively fixed.
  • [#​3924]: breaking(mysql): assume all non-binary collations compatible with str [[@​abonander]]
    • Text (or text-like) columns which previously were inferred to be Vec<u8> will be inferred to be String
      (this should ultimately fix more code than it breaks).
    • SET NAMES utf8mb4 COLLATE utf8_general_ci is no longer sent by default; instead, SET NAMES utf8mb4 is sent to
      allow the server to select the appropriate default collation (since this is version- and configuration-dependent).
    • MySqlConnectOptions::charset() and ::collation() now imply ::set_names(true) because they don't do anything otherwise.
    • Setting charset doesn't change what's sent in the Protocol::HandshakeResponse41 packet as that normally only
      matters for error messages before SET NAMES is sent.
      The default collation if set_names = false is utf8mb4_general_ci.
    • See this comment for details.
    • Incidental breaking change: RawSql::fetch_optional() now returns sqlx::Result<Option<DB::Row>>
      instead of sqlx::Result<DB::Row>. Whoops.
  • [#​3928]: breaking(sqlite): libsqlite3-sys versioning, feature flags, safety changes [[@​abonander]]
    • SemVer policy changes: libsqlite3-sys version is now specified using a range.
      The maximum of the range may now be increased in any backwards-compatible release.
      The minimum of the range may only be increased in major releases.
      If you have libsqlite3-sys in your dependencies, Cargo should choose a compatible version automatically.
      If otherwise unconstrained, Cargo should choose the latest version supported.
    • SQLite extension loading (including through the new sqlx-toml feature) is now unsafe.
    • Added new non-default features corresponding to conditionally compiled SQLite APIs:
      • sqlite-deserialize enabling SqliteConnection::serialize() and SqliteConnection::deserialize()
      • sqlite-load-extension enabling SqliteConnectOptions::extension() and ::extension_with_entrypoint()
      • sqlite-unlock-notify enables internal use of sqlite3_unlock_notify()
    • SqliteValue and SqliteValueRef changes:
      • The sqlite3_value* interface reserves the right to be stateful.
        Without protection, any call could theoretically invalidate values previously returned, leading to dangling pointers.
      • SqliteValue is now !Sync and SqliteValueRef is !Send to prevent data races from concurrent accesses.
        • Instead, clone or wrap the SqliteValue in Mutex, or convert the SqliteValueRef to an owned value.
      • SqliteValue and any derived SqliteValueRefs now internally track if that value has been used to decode a
        borrowed &[u8] or &str and errors if it's used to decode any other type.
      • This is not expected to affect the vast majority of usages, which should only decode a single type
        per SqliteValue/SqliteValueRef.
      • See new docs on SqliteValue for details.
  • [#​3949]: Postgres: move PgLTree::from to From<Vec<PgLTreeLabel>> implementation [[@​JerryQ17]]
  • [#​3957]: refactor(sqlite): do not borrow bound values, delete lifetime on SqliteArguments [[@​iamjpotts]]
  • [#​3958]: refactor(any): Remove lifetime parameter from AnyArguments [[@​iamjpotts]]
  • [#​3960]: refactor(core): Remove lifetime parameter from Arguments trait [[@​iamjpotts]]
  • [#​3993]: Unescape PostgreSQL passfile password [[@​V02460]]
    • Previously, .pgpass file handling did not process backslash-escapes in the password part.
      Now it does, which may change what password is sent to the server.
  • [#​4008]: make #[derive(sqlx::Type)] automatically generate impl PgHasArrayType by default for newtype structs [[@​papaj-na-wrotkach]]
    • Manual implementations of PgHasArrayType for newtypes will conflict with the generated one.
      Delete the manual impl or add #[sqlx(no_pg_array)] where conflicts occur.
  • [#​4077]: breaking: make offline optional to allow building without serde [[@​CathalMullan]]
  • [#​4094]: Bump bit-vec to v0.8 [[@​zennozenith]]
  • [#​4142]: feat(mysql): add mysql-rsa feature for non-TLS RSA auth [[@​dertin]]
    • Connections requiring RSA password encryption now need to enable the mysql-rsa feature
      or an error will be generated at runtime. RSA encryption is only used for plaintext (non-TLS) connections.
  • [#​4255]: breaking(any+mysql): correctly convert text and blob types to AnyTypeInfo [[@​abonander]]
Added
Changed
Fixed
statrs-dev/statrs (statrs)

v0.19.0

Compare Source

Added
  • Add initial no_std support
  • gate density estimation behind a "kde" feature
  • add first implementation of kernel density estimation.
  • add bandwith support for knn density estimation.
  • add a more generic implementation of knn density estimation.
  • add knn density estimation with kdtree rs tree.
  • add OnlineMoments accumulator using Welford
  • Add WebAssembly RNG support and update nalgebra
  • (distribution) narrow error type to avoid trait object
  • (distribution) add non-panicking try_inverse_cdf
  • autofix.ci for lint and fmt
  • (geometric) finer panic bounds
  • (function) add comprehensive kernel suite for KDE and smoothing (#​193)
  • update to 2024 edition, apply formatting and fix new clippy lints
  • [breaking] rely on prec module for precision needs and consts for math constants
  • use crate::prec macro assertions in tests instead of approx directly
  • (prec) write macros that delegate to approx using our defaults
  • add std feature
  • rename cov_chol_decomp to clone_cov_chol_decomp and return a cloned matrix
  • add methods for covariance decomposition, mean, covariance, and precision in MultivariateNormal
  • add accessor methods to various distribution
  • (stats_tests) implement KS test
  • enhance Levy distribution with comprehensive documentation and methods
  • add Levy distribution
  • (stats_tests) implement chisquare
  • (stats_tests) implement skewtest
  • (stats_tests) implement mannwhitneyu
  • (stats_tests) implement ttest_onesample
  • (stats_tests) implement f_oneway
Fixed
  • format assertion message with precision
  • fail autofix when clippy --fix can't clear every lint
  • drop PAT from autofix-ci.yml
  • make autofix clippy match other parts of ci
  • Automate MSRV lockfile updates
  • update to rand 0.10 and use seeded rng for tests
  • fix imports and add some tests.
  • kernel density computation.
  • drop excess precision requirements
  • wrap online stats with iter_statistics for #​376
  • Refresh MSRV lockfile
  • Leave getrandom backend selection to applications
  • Use valid order statistics benchmark inputs
  • correct entropy formulas for Pareto, Geometric, StudentsT, and Dirichlet
  • safeguard Gamma::inverse_cdf Newton step for shape < 1
  • compute Multinomial pmf/ln_pmf in log space to avoid NaN for large n
  • post updates to rand
  • update usage after rand dep update
  • restore missing normalization of Dirichlet samples
  • unblock PR 364 CI
  • remove unused testing imports
  • use core instead of std in KDE
  • (fmt) apply 2024 formatting to KDE
  • (clippy) use constants provided by core
  • (clippy) fix clippy failures in CI
  • (distribution_tests) pass if only one numerical relationship between pdf and cdf numerically close
  • change tests to rely on relative precision for math lib independence
  • Gate some stats_tests behind std feature
  • Use core over std where possible
  • update examples in mu and cov methods to use correct types from nalgebra
  • exact implementation of Bernoulli cdf
  • one more condition in inverse_cdf to account for small enough probabilities.
  • feature gate exact KS test one-sample method
Other
  • add some geometric pathological tests
  • enable autofix to use same clippy as other ci
  • Verify df one density integral
  • Cover chi-squared boundary behavior
  • update lock MSRV for kde deps change
  • module docs and feature doc
  • add paper reference and simple usage docs
  • document DensityError variants and mark non_exhaustive
  • add use of one dimensional gaussian kernel function.
  • density functions borrowing evaluation pointS instead of owning them.
  • some refactoring.
  • add performance bench.
  • add performance bench.
  • [autofix.ci] apply automated fixes
  • sample Multinomial via sequential conditional Binomial instead of categorical-style draw-and-scan
  • add characterization tests for Multinomial::sample before algorithm change
  • share binary-search lookup between Categorical::sample and inverse_cdf
  • derive Categorical::sf from cdf instead of storing it
  • Categorical now stores normalized values
  • Update dependencies and GitHub Actions
  • Converge the default continuous inverse_cdf
  • Align autofix toolchain with MSRV
  • Cover geometric inverse CDF overflow guards
  • how to release
  • wire up release-plz for crates.io publishing

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/rust-crates branch 3 times, most recently from 6eb0ad4 to cd2b4f1 Compare March 30, 2026 01:13
@renovate renovate Bot changed the title ⬆️ Update Rust crate sha2 to 0.11 ⬆️ Update Rust Crates Mar 30, 2026
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 5 times, most recently from 1e21df7 to fd5ff5c Compare April 6, 2026 16:56
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 8 times, most recently from 5a1c163 to 4927285 Compare April 14, 2026 10:55
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 3 times, most recently from 76ef924 to 1431926 Compare April 16, 2026 23:35
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 3 times, most recently from 2570340 to ee7c702 Compare April 27, 2026 15:37
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 5 times, most recently from 1d07e0f to 615c7d9 Compare May 11, 2026 10:35
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 7 times, most recently from 2f5e4a0 to 4fe49d0 Compare June 28, 2026 04:27
@renovate
renovate Bot force-pushed the renovate/rust-crates branch from 4fe49d0 to 199c9d1 Compare June 29, 2026 04:51
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 17 times, most recently from 8b52c80 to cd47fdc Compare July 14, 2026 05:42
@renovate
renovate Bot force-pushed the renovate/rust-crates branch 3 times, most recently from 55358b9 to 33aaa84 Compare July 23, 2026 18:07
@renovate
renovate Bot force-pushed the renovate/rust-crates branch from 33aaa84 to f556010 Compare July 28, 2026 19:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants