Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the deps group with 7 updates:

Package From To
tokio-util 0.7.16 0.7.17
rand 0.8.5 0.9.2
detect-targets 0.1.65 0.1.67
sysinfo 0.32.1 0.37.2
rust_xlsxwriter 0.80.0 0.91.0
turso 0.3.1 0.3.2
turso_core 0.3.1 0.3.2

Updates tokio-util from 0.7.16 to 0.7.17

Commits
  • 454fd8c chore: prepare tokio-util v0.7.17 (#7719)
  • 4421022 codec: remove unnecessary trait bounds on all Framed constructors (#7716)
  • 5a709e3 io_uring: change Completable to not return io::Result (#7702)
  • 5efb1c3 io: doc that AsyncWrite does not inherit from Write (#7705)
  • f490029 runtime: revert "replace manual vtable definitions with Wake" (#7699)
  • d25778f task: add tests for task::Builder::spawn_local (#7697)
  • b8318fa task: add tests for spawn_local in panic scenarios (#7694)
  • acfdb87 task: use #[tokio::test] explicitly in tests/task_builder.rs (#7698)
  • d060401 sync: return TryRecvError::Disconnected from Receiver::try_recv after `Re...
  • 5dacc2e task: add tests for spawn_local and spawn_local_on (#7609)
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.9.2

Changelog

Sourced from rand's changelog.

[0.9.2 — 2025-07-20]

Deprecated

  • Deprecate rand::rngs::mock module and StepRng generator (#1634)

Additions

  • Enable WeightedIndex<usize> (de)serialization (#1646)

[0.9.1] - 2025-04-17

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)

... (truncated)

Commits

Updates detect-targets from 0.1.65 to 0.1.67

Commits

Updates sysinfo from 0.32.1 to 0.37.2

Changelog

Sourced from sysinfo's changelog.

0.37.2

  • Improve documentation of System::refresh_cpu_all and of System::refresh_cpu_specifics.
  • Android: Fix System::uptime.
  • Linux: Correctly handled modified/removed Process::exe paths.

0.37.1

  • Fix serde serialization on Process::name.
  • Linux: Fix get_cpu_frequency on loongarch64.
  • Windows: Correctly handle invalid UTF-8 string in Motherboard.

0.37.0

  • Update minimum supported Rust version to 1.88 (for 2024 edition and if let chain feature).
  • Added Component::id API.
  • Linux: Greatly improve partial processes retrieval.
  • Linux: Simplify internal components retrieval code.

0.36.1

  • Linux: Improve processor CPU usage computation.

0.36.0

  • Add new Motherboard type.
  • Add new Product type.
  • Linux/macOS: Fix CPU usage update.
  • Linux: Improve Component::label generated String.
  • macOS: Make Components implement Send and Sync traits.

0.35.2

  • Linux: Fix retrieval of processor frequency on loongarch64.
  • Linux/Android: Improve Process::wait by checking if the process is still alive before waiting.
  • Windows: Fix Process::wait.

0.35.1

  • Linux: Fix processor retrieval if some information is missing.
  • Windows: Increase range of windows crate up to < 0.63.

0.35.0

  • Update MSRV to 1.75.
  • Add System::open_files_limit.
  • Add Process::kill_and_wait and Process::kill_with_and_wait methods.
  • Process::open_files* methods return usize.
  • set_open_files_limit argument type is usize.
  • Code example was improved.

... (truncated)

Commits
  • 067dd61 Merge pull request #1589 from GuillaumeGomez/update
  • 3ac7887 Update version to 0.37.2
  • 3269940 Update CHANGELOG for 0.37.2
  • 80bcfb2 Merge pull request #1588 from GuillaumeGomez/doc
  • 1c19785 Improve documentation of System::refresh_cpu_specifics
  • 90f9005 Merge pull request #1586 from GuillaumeGomez/linux-exe-link
  • cd837f7 Linux: Correctly handle removed exe link paths
  • b5a341d Merge pull request #1583 from GuillaumeGomez/uptime-android
  • b23eb6a Correctly get uptime information on Android
  • cb15018 Merge pull request #1581 from GuillaumeGomez/improve-docs
  • Additional commits viewable in compare view

Updates rust_xlsxwriter from 0.80.0 to 0.91.0

Changelog

Sourced from rust_xlsxwriter's changelog.

[0.91.0] - 2025-10-29

Added

  • Added support for chart clustered/2D categories. See the Clustered Chart cookbook example.

  • Added support for non-contiguous chart ranges like =(Sheet1!$A$1:$A$2,Sheet1!$A$4:$A$5). These can only be added as strings.

  • Added Table::set_alt_text() and Table::set_alt_text_title() methods to the [Table] object to allow alternative text to be specified for screen readers.

  • Added Worksheet::insert_image_fit_to_cell_centered() method to fit an image to a cell and also center it.

    [Request #157].

    [Request #157]: jmcnamara/rust_xlsxwriter#157

[0.90.2] - 2025-09-26

Added

  • Made Formula::escape_table_functions() method public. This is to allow third party wrappers like polars_excel_writer to escape table functions.

[0.90.1] - 2025-09-17

Added

... (truncated)

Commits
  • c5ebb68 release: 0.91.0
  • 2d92ec3 worksheet: improve embed_image() example
  • ad044b9 worksheet: add method to fit and center image in cell
  • 198d38f table: add alt text options
  • 9c1c16b chart: allow structured reference in chart series
  • 0d7f9db chart: add support for non-contiguous ranges
  • 750d782 chart: add support for clustered/2D categories
  • aafea27 release: 0.90.2
  • 0eba3bf formula: make escape_table_functions() public
  • f38b782 xmlwriter: mark internal function as test code
  • Additional commits viewable in compare view

Updates turso from 0.3.1 to 0.3.2

Release notes

Sourced from turso's releases.

0.3.2 -- 2025-11-02

Release Notes

Updated

  • core: Disable autovacuum by default (Pekka Enberg)
  • Update Java package version in scripts/update-version.py (Pekka Enberg)

Install turso_cli 0.3.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/turso/releases/download/v0.3.2/turso_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/tursodatabase/turso/releases/download/v0.3.2/turso_cli-installer.ps1 | iex"

Download turso_cli 0.3.2

File Platform Checksum
turso_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
turso_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
turso_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
turso_cli-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
turso_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/turso

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>
Changelog

Sourced from turso's changelog.

0.3.2 -- 2025-11-02

Updated

  • core: Disable autovacuum by default (Pekka Enberg)
  • Update Java package version in scripts/update-version.py (Pekka Enberg)
Commits
  • 6f85fc3 Turso 0.3.2
  • 22f61c4 Update CHANGELOG
  • 23b125a Merge 'core: Disable autovacuum by default' from Pekka Enberg
  • 2a478b5 Merge 'Update Java package version in scripts/update-version.py' from Pekka E...
  • See full diff in compare view

Updates turso_core from 0.3.1 to 0.3.2

Release notes

Sourced from turso_core's releases.

0.3.2 -- 2025-11-02

Release Notes

Updated

  • core: Disable autovacuum by default (Pekka Enberg)
  • Update Java package version in scripts/update-version.py (Pekka Enberg)

Install turso_cli 0.3.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/turso/releases/download/v0.3.2/turso_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/tursodatabase/turso/releases/download/v0.3.2/turso_cli-installer.ps1 | iex"

Download turso_cli 0.3.2

File Platform Checksum
turso_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
turso_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
turso_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
turso_cli-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
turso_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/turso

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>
Changelog

Sourced from turso_core's changelog.

0.3.2 -- 2025-11-02

Updated

  • core: Disable autovacuum by default (Pekka Enberg)
  • Update Java package version in scripts/update-version.py (Pekka Enberg)
Commits
  • 6f85fc3 Turso 0.3.2
  • 22f61c4 Update CHANGELOG
  • 23b125a Merge 'core: Disable autovacuum by default' from Pekka Enberg
  • 2a478b5 Merge 'Update Java package version in scripts/update-version.py' from Pekka E...
  • See full diff 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 3, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/deps-95a82520c2 branch from cc1fde4 to 5a60a8f Compare November 4, 2025 01:19
Bumps the deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.16` | `0.7.17` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.2` |
| [detect-targets](https://github.com/cargo-bins/cargo-binstall) | `0.1.65` | `0.1.67` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.32.1` | `0.37.2` |
| [rust_xlsxwriter](https://github.com/jmcnamara/rust_xlsxwriter) | `0.80.0` | `0.91.0` |
| [turso](https://github.com/tursodatabase/turso) | `0.3.1` | `0.3.2` |
| [turso_core](https://github.com/tursodatabase/turso) | `0.3.1` | `0.3.2` |


Updates `tokio-util` from 0.7.16 to 0.7.17
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.16...tokio-util-0.7.17)

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

Updates `detect-targets` from 0.1.65 to 0.1.67
- [Release notes](https://github.com/cargo-bins/cargo-binstall/releases)
- [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/install-from-binstall-release.ps1)
- [Commits](cargo-bins/cargo-binstall@detect-targets-v0.1.65...detect-targets-v0.1.67)

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

Updates `rust_xlsxwriter` from 0.80.0 to 0.91.0
- [Changelog](https://github.com/jmcnamara/rust_xlsxwriter/blob/main/CHANGELOG.md)
- [Commits](jmcnamara/rust_xlsxwriter@v0.80.0...v0.91.0)

Updates `turso` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/tursodatabase/turso/releases)
- [Changelog](https://github.com/tursodatabase/turso/blob/v0.3.2/CHANGELOG.md)
- [Commits](tursodatabase/turso@v0.3.1...v0.3.2)

Updates `turso_core` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/tursodatabase/turso/releases)
- [Changelog](https://github.com/tursodatabase/turso/blob/v0.3.2/CHANGELOG.md)
- [Commits](tursodatabase/turso@v0.3.1...v0.3.2)

---
updated-dependencies:
- dependency-name: tokio-util
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rand
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: detect-targets
  dependency-version: 0.1.67
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: sysinfo
  dependency-version: 0.37.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: rust_xlsxwriter
  dependency-version: 0.91.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: turso
  dependency-version: 0.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: turso_core
  dependency-version: 0.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/deps-95a82520c2 branch from 5a60a8f to 2daeeb8 Compare November 4, 2025 01:25
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 10, 2025
@dependabot dependabot bot deleted the dependabot/cargo/deps-95a82520c2 branch November 10, 2025 03:16
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