Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Bumps the deps group with 27 updates in the / directory:

Package From To
clap 4.5.54 4.5.57
facet 0.33.0 0.43.2
thiserror 2.0.17 2.0.18
bytes 1.11.0 1.11.1
chrono 0.4.42 0.4.43
jiff 0.2.18 0.2.19
mailgun-rs 2.0.1 2.0.2
rand 0.9.2 0.10.0
sysinfo 0.37.2 0.38.0
tokio-postgres 0.7.15 0.7.16
tower 0.5.2 0.5.3
binstalk-downloader 0.13.31 0.13.32
blake3 1.8.2 1.8.3
clap_complete 4.5.64 4.5.65
comfy-table 7.2.1 7.2.2
detect-targets 0.1.76 0.1.79
json5 1.3.0 1.3.1
regex 1.12.2 1.12.3
target-tuples 0.5.13 0.5.14
uuid 1.19.0 1.20.0
zip 7.0.0 7.2.0
indexmap 2.12.1 2.13.0
rust_xlsxwriter 0.92.3 0.93.0
turso 0.4.1 0.4.4
libc 0.2.179 0.2.180
signal-hook 0.3.18 0.4.3
filetime 0.2.26 0.2.27

Updates clap from 4.5.54 to 4.5.57

Release notes

Sourced from clap's releases.

v4.5.57

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

v4.5.56

[4.5.56] - 2026-01-29

Fixes

  • On conflict error, don't show conflicting arguments in the usage

v4.5.55

[4.5.55] - 2026-01-27

Fixes

  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args
Changelog

Sourced from clap's changelog.

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

[4.5.56] - 2026-01-29

Fixes

  • On conflict error, don't show conflicting arguments in the usage

[4.5.55] - 2026-01-27

Fixes

  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args
Commits
  • 69c0ddb chore: Release
  • 8206bba docs: Update changelog
  • c109d67 Merge pull request #6104 from epage/hide
  • 9d7f212 fix(complete): Hide dot files on dynamic completer
  • 77b3fdb test(complete): Show dot file behavior
  • f89b9b8 test(derive): Make stable across upgrade
  • 58eb8a9 chore: Release
  • 10a2a75 docs: Update changelog
  • a42eebf Merge pull request #6103 from epage/mut_subcommands
  • 5335f54 feat: Add Command::mut_subcommands
  • Additional commits viewable in compare view

Updates facet from 0.33.0 to 0.43.2

Release notes

Sourced from facet's releases.

facet-args-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

facet-assert-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

facet-core-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

facet-csv-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

facet-default-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

facet-dessert-v0.43.2

Added

  • (facet-core) Add SmallVec support (#1884)

... (truncated)

Changelog

Sourced from facet's changelog.

0.43.2 - 2026-01-23

Added

  • (facet-core) Add SmallVec support (#1884)

Other

  • (tests) consolidate integration test binaries (#1887)

0.43.1 - 2026-01-23

Added

  • add Facet implementation for tendril crate (#1870)

0.42.0 - 2026-01-06

Added

  • implement Facet for core::convert::Infallible

Fixed

  • mark function pointers as invariant to prevent lifetime UB
  • (soundness) make OxRef::new and OxMut::new unsafe

Other

  • (bytestring) simplify ByteString impl with vtable_direct! macro
  • Fix #1629: Preserve custom HTML elements during parse/serialize roundtrip
  • Add facet-validate crate for field validation during deserialization
  • Add rust_decimal::Decimal support + fix XML type inference
  • Add rust_decimal::Decimal support to facet-core
  • Add Facet implementation for smol_str::SmolStr
  • Set up release-plz with synchronized versions and trusted publishing
  • Add facet_no_doc cfg for global doc string stripping
  • Fix facet-pretty to respect skip_serializing_if and add HTML roundtrip tests
  • Add html::text attribute for enum variants and comprehensive roundtrip test
  • Fix inconsistent Shape hash (issue #1574)
  • Fix soundness issue: Attr can contain non-Sync data
  • Require 'static for Opaque Facet impl
  • (facet-core) simplify Ox API by requiring T: Facet
  • fix broken intra-doc link to Peek in facet-core
  • Improve AGENTS.md, closes #1551
Commits
  • 8a70f87 chore: release v0.43.2 (#1872)
  • f4163a8 fix(facet-json): correctly handle escape sequences after multi-byte UTF-8 (#1...
  • cfd1e25 feat(facet-reflect): Add from_raw and finish_in_place for stack-friendly dese...
  • 6401013 refactor(tests): consolidate integration test binaries (#1887)
  • 57f174c fix(pretty): ensure visited.remove() is called for proxy types (#1888)
  • 617fd8b Extract dev tooling into separate tools/ workspace (#1881)
  • ad423d2 feat(facet-reflect): Add PokeList for mutable list reflection (#1886)
  • af25c95 feat(facet-core): Add SmallVec support (#1884)
  • abdbd28 fix(deps): update rust crate brotli to v8 (#1867)
  • a858b9e Remove facet-xml ecosystem (moved to facet-rs/facet-xml) (#1879)
  • Additional commits viewable in compare view

Updates thiserror from 2.0.17 to 2.0.18

Release notes

Sourced from thiserror's releases.

2.0.18

Commits
  • dc0f6a2 Release 2.0.18
  • 0275292 Touch up PR 443
  • 3c33bc6 Merge pull request #443 from LucaCappelletti94/master
  • 995939c Reproduce issue 442
  • 21653d1 Made clippy lifetime allows conditional
  • 45e5388 Update actions/upload-artifact@v5 -> v6
  • 386aac1 Update actions/upload-artifact@v4 -> v5
  • ec50561 Update actions/checkout@v5 -> v6
  • 247eab5 Update name of empty_enum clippy lint
  • 91b181f Raise required compiler to Rust 1.68
  • Additional commits viewable in compare view

Updates bytes from 1.11.0 to 1.11.1

Release notes

Sourced from bytes's releases.

Bytes v1.11.1

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve
Changelog

Sourced from bytes's changelog.

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve
Commits

Updates chrono from 0.4.42 to 0.4.43

Release notes

Sourced from chrono's releases.

0.4.43

What's Changed

Commits
  • 45caaa9 Update copyright year to 2026 in LICENSE.txt
  • 1c0b8f0 Bump version to 0.4.43
  • a03e43b Upgrade windows-bindgen to 0.66
  • 4fedaba Ignore bincode advisory
  • f4b7bbd Bump actions/checkout from 5 to 6
  • db12973 Added doctest for the NaiveDate years_since function (#1755)
  • 34b5f49 chore: minor improvement for docs
  • 8c82711 Bump actions/setup-node from 5 to 6
  • ea1f11b Drop deny lints, eager Debug impls are a mixed blessing
  • 35f9f2d Add feature gated defmt support.
  • Additional commits viewable in compare view

Updates jiff from 0.2.18 to 0.2.19

Changelog

Sourced from jiff's changelog.

0.2.19 (2026-02-05)

This is a small release with a performance optimization (with respect to doing heavily contended arithmetic on Zoned values) and a bug fix for a panic that can occur when using %2s in strftime.

Enhancements:

  • #491: Avoid cloning TimeZone for consuming operations on Zoned.

Bug fixes:

  • #497: Fix a panic in timestamp.strftime("%2s").
Commits
  • 52b2b0f 0.2.19
  • ef47ecc changelog: 0.2.19
  • 196442d fmt: fix panic in strftime for %2s
  • 3c9ba66 zoned: kinda optimize Zoned::default()
  • 4c9c982 ci: fix emscripten build
  • d41b397 zoned: optimize Zoned::{add,sub,add_assign,sub_assign} when Zoned is cons...
  • 66ba0fe fmt: rip ranged integers out of Temporal RFC 9557 parser
  • a651ac7 error: update Error::is_range predicate
  • c2dcbca fmt: refactor Temporal parser to get rid of input capture
  • d439a66 fmt: rename strtime::format to strtime::print
  • Additional commits viewable in compare view

Updates mailgun-rs from 2.0.1 to 2.0.2

Release notes

Sourced from mailgun-rs's releases.

v2.0.2

What's Changed

New Contributors

Full Changelog: dongri/mailgun-rs@v2.0.1...v2.0.2

Commits
  • 8736341 v2.0.2
  • f2c8e1f Merge pull request #21 from xangelix/upgrade-reqwest-0.13
  • 9b43088 chore: upgrade reqwest to v0.13, fix tls choice feature, update all deps
  • See full diff in compare view

Updates rand from 0.9.2 to 0.10.0

Changelog

Sourced from rand's changelog.

[0.10.0] - 2026-02-08

Changes

  • The dependency on rand_chacha has been replaced with a dependency on chacha20. This changes the implementation behind StdRng, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in chacha20 instead of rand_chacha (#1642).
  • Rename fns IndexedRandom::choose_multiple -> sample, choose_multiple_array -> sample_array, choose_multiple_weighted -> sample_weighted, struct SliceChooseIter -> IndexedSamples and fns IteratorRandom::choose_multiple -> sample, choose_multiple_fill -> sample_fill (#1632)
  • Use Edition 2024 and MSRV 1.85 (#1653)
  • Let Fill be implemented for element types, not sliceable types (#1652)
  • Fix OsError::raw_os_error on UEFI targets by returning Option<usize> (#1665)
  • Replace fn TryRngCore::read_adapter(..) -> RngReadAdapter with simpler struct RngReader (#1669)
  • Remove fns SeedableRng::from_os_rng, try_from_os_rng (#1674)
  • Remove Clone support for StdRng, ReseedingRng (#1677)
  • Use postcard instead of bincode to test the serde feature (#1693)
  • Avoid excessive allocation in IteratorRandom::sample when amount is much larger than iterator size (#1695)
  • Rename os_rng -> sys_rng, OsRng -> SysRng, OsError -> SysError (#1697)
  • Rename Rng -> RngExt as upstream rand_core has renamed RngCore -> Rng (#1717)

Additions

  • Add fns IndexedRandom::choose_iter, choose_weighted_iter (#1632)
  • Pub export Xoshiro128PlusPlus, Xoshiro256PlusPlus prngs (#1649)
  • Pub export ChaCha8Rng, ChaCha12Rng, ChaCha20Rng behind chacha feature (#1659)
  • Fn rand::make_rng() -> R where R: SeedableRng (#1734)

Removals

  • Removed ReseedingRng (#1722)
  • Removed unused feature "nightly" (#1732)
  • Removed feature small_rng (#1732)

#1632: rust-random/rand#1632 #1642: rust-random/rand#1642 #1649: rust-random/rand#1649 #1652: rust-random/rand#1652 #1653: rust-random/rand#1653 #1659: rust-random/rand#1659 #1665: rust-random/rand#1665 #1669: rust-random/rand#1669 #1674: rust-random/rand#1674 #1677: rust-random/rand#1677 #1693: rust-random/rand#1693 #1695: rust-random/rand#1695 #1697: rust-random/rand#1697 #1717: rust-random/rand#1717 #1722: rust-random/rand#1722 #1732: rust-random/rand#1732 #1734: rust-random/rand#1734

Commits

Updates sysinfo from 0.37.2 to 0.38.0

Changelog

Sourced from sysinfo's changelog.

0.38.0

  • Add NetBSD support.
  • Windows: Fix unsoundness for a function used in Motherboard and Product.
  • Linux: Improve CPU info parsing.
  • Fix serde serialization of MacAddr and of Disk::file_system.
Commits
  • 4124381 Update CHANGELOG for 0.38.0
  • 98a3141 Merge pull request #1617 from GuillaumeGomez/updat
  • 7197638 Update crate version to 0.38.0
  • f69a2b9 Fix typos and make Motherboard::new return None on NetBSD
  • 791face Merge pull request #1616 from GuillaumeGomez/netbsd-root
  • b564d9a Add Process::root support for NetBSD
  • 7b324db Merge pull request #1615 from GuillaumeGomez/netbsd
  • ae044ef Implement Process::open_files on NetBSD
  • 8c5cd19 Merge pull request #1609 from notable-equivalent/feature/cgroup-access-from-c
  • 464968f Add C interface for accessing cgroup info
  • Additional commits viewable in compare view

Updates tokio-postgres from 0.7.15 to 0.7.16

Release notes

Sourced from tokio-postgres's releases.

tokio-postgres v0.7.16

Added

  • Added Client::query_scalar, Client::query_one_scalar, and Client::query_opt_scalar methods.
  • Added Row::raw_size_bytes method.
  • Added Column::type_modifier method.

Changed

  • Upgraded whoami to v2.
Commits
  • b7f2cf0 Release tokio-postgres v0.7.16
  • b0a62a5 Release postgres-types v0.2.12
  • 36f7dcd Release postgres-protocol v0.6.10
  • 46ea55c chore(ci): use committed lockfile
  • 167084d build: commit lockfile
  • f187cc5 build(deps): upgrade whoami to v2
  • ac029de Add support for scalar queries.
  • c7a615c fix(postgres-protocol): increase bind parameter limit from i16::MAX to u16::MAX
  • 83e0dfb build: further improve -Zminimal-versions support
  • 117872c fix: broken build caused by #1145
  • Additional commits viewable in compare view

Updates tower from 0.5.2 to 0.5.3

Release notes

Sourced from tower's releases.

tower 0.5.3

Added

  • builder: Add ServiceBuilder::boxed_clone_sync() helper (#804)

Fixed

  • retry: Check that supplied jitter is not NaN (#843)

#804: tower-rs/tower#804 #843: tower-rs/tower#843

Commits

Updates binstalk-downloader from 0.13.31 to 0.13.32

Commits

Updates blake3 from 1.8.2 to 1.8.3

Release notes

Sourced from blake3's releases.

1.8.3

version 1.8.3

Changes since 1.8.2:

  • Add Hash::as_slice.
  • Update to the 2024 Edition and bump the MSRV to 1.85.
  • Fix a set of Miri failures in the intrinsics implementations. We were computing (though not dereferencing) an out-of-bounds pointer using add rather than wrapping_add. I'm not aware of any observable consequences of this bug. See BLAKE3-team/BLAKE3#507.
  • CPU feature detection on x86/x86-64 no longer requires the std Cargo feature in the blake3 crate.
  • Build fixes in the C implementation for macOS and Cygwin, and various improvements to the CMake build.
Commits
  • 8b829b6 version 1.8.3
  • 7d6e242 update to the 2024 edition
  • 0b64ce2 bump constant_time_eq version to 0.4.2
  • 890050c Fix Cygwin build by skipping blake3_xof_many_avx512
  • 308b95d Add Hash::as_slice() for convenient serialization to bytes
  • eae9bf3 Revert "pin generic-array to the un-deprecated version"
  • 185f1db pin generic-array to the un-deprecated version
  • c54ee7e add a warning to the --check doc
  • 2f341f1 update ccache reference to official release notes URL
  • 8bec2fb chore: make some documents clearer (#528)
  • Additional commits viewable in compare view

Updates clap_complete from 4.5.64 to 4.5.65

Commits
  • a99bd42 chore: Release
  • 485d781 docs: Update changelog
  • 0acc8c8 Merge pull request #6209 from saiarcot895/fix-optional-value-option-zsh
  • 6c2cff6 fix: Allow optional value arguments for Zsh shell completion
  • 58723e5 test: Generate completions with multi/optional value options
  • 4ecbf54 chore: Release
  • f04062b docs: Update changelog
  • d68caa8 Merge pull request #6205 from maheshbansod/default-val-no-desc
  • a062eaf fix: Default vals on new line if possible values
  • 15509af test: Demonstrate default value ui bug on no desc
  • See full diff in compare view

Updates comfy-table from 7.2.1 to 7.2.2

Release notes

Sourced from comfy-table's releases.

v7.2.2

[7.2.2] - 2026-01-13

Fix

  • Minor performance improvements
  • Fixed an edge-case, where multiple LowerBoundary constraints weren't uphold.
  • Fixed an issue where tables were misformatted when no vertical border styling was specified. #198

[7.2.1] - 2025-09-11

Misc

  • Adjust a single test case to not fail in 0x0 sized tty-environments. !186
Changelog

Sourced from comfy-table's changelog.

[7.2.2] - 2026-01-13

Fix

  • Minor performance improvements
  • Fixed an edge-case, where multiple LowerBoundary constraints weren't uphold.
  • Fixed an issue where tables were misformatted when no vertical border styling was specified. #198
Commits
  • 9040cd2 chore: Release comfy-table version 7.2.2
  • 51f69f6 docs: Prepare changelog for release
  • 2c697e1 Merge pull request #201 from Nukesor/fix-cell-verticl-styling
  • 4bc64ad fix: Cell formatting without any vertical styling
  • dda03a0 meta: LLM contribution guidelines
  • f1aa156 meta: Add AGENTS.md
  • d01e3d5 Merge pull request #200 from Nukesor/tests
  • 053f7c9 chore: Format codebase with nightly rules
  • 78e8f46 fix: Split doesn't result in violation of lower boundary
  • 68c307c fix: Successive lower boundary constraints
  • Additional commits viewable in compare view

Updates detect-targets from 0.1.76 to 0.1.79

Release notes

Sourced from detect-targets's releases.

detect-targets-v0.1.79

Other

  • Fix changelog format (#2454)

detect-targets-v0.1.78

No release notes provided.

detect-targets-v0.1.77

No release notes provided.

Commits

Updates json5 from 1.3.0 to 1.3.1

Commits

Updates regex from 1.12.2 to 1.12.3

Changelog

Sourced from regex's changelog.

1.12.3 (2025-02-03)

This release excludes some unnecessary things from the archive published to crates.io. Specifically, fuzzing data and various shell scripts are now excluded. If you run into problems, please file an issue.

Improvements:

  • #1319: Switch from a Cargo exclude list to an include list, and exclude some unnecessary stuff.
Commits
  • b028e4f 1.12.3
  • 5e195de regex-automata-0.4.14
  • a3433f6 regex-syntax-0.8.9
  • 0c07fae regex-lite-0.1.9
  • 6a81006 cargo: exclude development scripts and fuzzing data
  • 4733e28 automata: fix onepass::DFA::try_search_slots panic when too many slots are ...
  • See full diff in compare view

Updates target-tuples from 0.5.13 to 0.5.14

Commits

Updates uuid from 1.19.0 to 1.20.0

Release notes

Sourced from uuid's releases.

v1.20.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.19.0...v1.20.0

Commits
  • c3346dd Merge pull request #857 from uuid-rs/cargo/v1.20.0
  • 66eebc3 prepare for 1.20.0 release
  • 3b66758 Merge pull request #856 from uuid-rs/docs/bytes-le-ordering
  • e2bdd44 don't run UI tests in wasm
  • b6dc7ec note that ordering applies to fields in to/from_bytes_le

Bumps the deps group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.54` | `4.5.57` |
| [facet](https://github.com/facet-rs/facet) | `0.33.0` | `0.43.2` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.17` | `2.0.18` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.11.0` | `1.11.1` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.42` | `0.4.43` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.18` | `0.2.19` |
| [mailgun-rs](https://github.com/dongri/mailgun-rs) | `2.0.1` | `2.0.2` |
| [rand](https://github.com/rust-random/rand) | `0.9.2` | `0.10.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.37.2` | `0.38.0` |
| [tokio-postgres](https://github.com/rust-postgres/rust-postgres) | `0.7.15` | `0.7.16` |
| [tower](https://github.com/tower-rs/tower) | `0.5.2` | `0.5.3` |
| [binstalk-downloader](https://github.com/cargo-bins/cargo-binstall) | `0.13.31` | `0.13.32` |
| [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.8.2` | `1.8.3` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.64` | `4.5.65` |
| [comfy-table](https://github.com/nukesor/comfy-table) | `7.2.1` | `7.2.2` |
| [detect-targets](https://github.com/cargo-bins/cargo-binstall) | `0.1.76` | `0.1.79` |
| [json5](https://github.com/callum-oakley/json5-rs) | `1.3.0` | `1.3.1` |
| [regex](https://github.com/rust-lang/regex) | `1.12.2` | `1.12.3` |
| [target-tuples](https://github.com/chorman0773/rust-target-tuples) | `0.5.13` | `0.5.14` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.19.0` | `1.20.0` |
| [zip](https://github.com/zip-rs/zip2) | `7.0.0` | `7.2.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.12.1` | `2.13.0` |
| [rust_xlsxwriter](https://github.com/jmcnamara/rust_xlsxwriter) | `0.92.3` | `0.93.0` |
| [turso](https://github.com/tursodatabase/turso) | `0.4.1` | `0.4.4` |
| [libc](https://github.com/rust-lang/libc) | `0.2.179` | `0.2.180` |
| [signal-hook](https://github.com/vorner/signal-hook) | `0.3.18` | `0.4.3` |
| [filetime](https://github.com/alexcrichton/filetime) | `0.2.26` | `0.2.27` |



Updates `clap` from 4.5.54 to 4.5.57
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.54...clap_complete-v4.5.57)

Updates `facet` from 0.33.0 to 0.43.2
- [Release notes](https://github.com/facet-rs/facet/releases)
- [Changelog](https://github.com/facet-rs/facet/blob/main/CHANGELOG.md)
- [Commits](facet-rs/facet@v0.33.0...facet-v0.43.2)

Updates `thiserror` from 2.0.17 to 2.0.18
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.17...2.0.18)

Updates `bytes` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.11.0...v1.11.1)

Updates `chrono` from 0.4.42 to 0.4.43
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.42...v0.4.43)

Updates `jiff` from 0.2.18 to 0.2.19
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.18...jiff-static-0.2.19)

Updates `mailgun-rs` from 2.0.1 to 2.0.2
- [Release notes](https://github.com/dongri/mailgun-rs/releases)
- [Commits](dongri/mailgun-rs@v2.0.1...v2.0.2)

Updates `rand` from 0.9.2 to 0.10.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@rand_core-0.9.2...0.10.0)

Updates `sysinfo` from 0.37.2 to 0.38.0
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.37.2...v0.38.0)

Updates `tokio-postgres` from 0.7.15 to 0.7.16
- [Release notes](https://github.com/rust-postgres/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@tokio-postgres-v0.7.15...tokio-postgres-v0.7.16)

Updates `tower` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.5.2...tower-0.5.3)

Updates `binstalk-downloader` from 0.13.31 to 0.13.32
- [Release notes](https://github.com/cargo-bins/cargo-binstall/releases)
- [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml)
- [Commits](cargo-bins/cargo-binstall@binstalk-downloader-v0.13.31...binstalk-downloader-v0.13.32)

Updates `blake3` from 1.8.2 to 1.8.3
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](BLAKE3-team/BLAKE3@1.8.2...1.8.3)

Updates `clap_complete` from 4.5.64 to 4.5.65
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.64...clap_complete-v4.5.65)

Updates `comfy-table` from 7.2.1 to 7.2.2
- [Release notes](https://github.com/nukesor/comfy-table/releases)
- [Changelog](https://github.com/Nukesor/comfy-table/blob/main/CHANGELOG.md)
- [Commits](Nukesor/comfy-table@v7.2.1...v7.2.2)

Updates `detect-targets` from 0.1.76 to 0.1.79
- [Release notes](https://github.com/cargo-bins/cargo-binstall/releases)
- [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml)
- [Commits](cargo-bins/cargo-binstall@detect-targets-v0.1.76...detect-targets-v0.1.79)

Updates `json5` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/callum-oakley/json5-rs/releases)
- [Commits](callum-oakley/json5-rs@1.3.0...1.3.1)

Updates `regex` from 1.12.2 to 1.12.3
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.12.2...1.12.3)

Updates `target-tuples` from 0.5.13 to 0.5.14
- [Commits](https://github.com/chorman0773/rust-target-tuples/commits)

Updates `uuid` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.19.0...v1.20.0)

Updates `zip` from 7.0.0 to 7.2.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v7.0.0...v7.2.0)

Updates `indexmap` from 2.12.1 to 2.13.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.12.1...2.13.0)

Updates `rust_xlsxwriter` from 0.92.3 to 0.93.0
- [Changelog](https://github.com/jmcnamara/rust_xlsxwriter/blob/main/CHANGELOG.md)
- [Commits](jmcnamara/rust_xlsxwriter@v0.92.3...v0.93.0)

Updates `turso` from 0.4.1 to 0.4.4
- [Release notes](https://github.com/tursodatabase/turso/releases)
- [Changelog](https://github.com/tursodatabase/turso/blob/v0.4.4/CHANGELOG.md)
- [Commits](tursodatabase/turso@v0.4.1...v0.4.4)

Updates `turso_core` from 0.4.1 to 0.4.4
- [Release notes](https://github.com/tursodatabase/turso/releases)
- [Changelog](https://github.com/tursodatabase/turso/blob/v0.4.4/CHANGELOG.md)
- [Commits](tursodatabase/turso@v0.4.1...v0.4.4)

Updates `libc` from 0.2.179 to 0.2.180
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.180/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.179...0.2.180)

Updates `signal-hook` from 0.3.18 to 0.4.3
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md)
- [Commits](vorner/signal-hook@v0.3.18...v0.4.3)

Updates `filetime` from 0.2.26 to 0.2.27
- [Commits](alexcrichton/filetime@0.2.26...0.2.27)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.57
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: facet
  dependency-version: 0.43.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: thiserror
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: bytes
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: chrono
  dependency-version: 0.4.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: jiff
  dependency-version: 0.2.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: mailgun-rs
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rand
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: sysinfo
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: tokio-postgres
  dependency-version: 0.7.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tower
  dependency-version: 0.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: binstalk-downloader
  dependency-version: 0.13.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: blake3
  dependency-version: 1.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: clap_complete
  dependency-version: 4.5.65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: comfy-table
  dependency-version: 7.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: detect-targets
  dependency-version: 0.1.79
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: json5
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: regex
  dependency-version: 1.12.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: target-tuples
  dependency-version: 0.5.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: uuid
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: zip
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: indexmap
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: rust_xlsxwriter
  dependency-version: 0.93.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: turso
  dependency-version: 0.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: turso_core
  dependency-version: 0.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: libc
  dependency-version: 0.2.180
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: signal-hook
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: filetime
  dependency-version: 0.2.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants