From 97268c01c3561201e2a96ae5fb790dd0f7ad72de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 04:54:03 +0000 Subject: [PATCH] Bump serialport from 4.5.0 to 4.6.1 Bumps [serialport](https://github.com/serialport/serialport-rs) from 4.5.0 to 4.6.1. - [Changelog](https://github.com/serialport/serialport-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/serialport/serialport-rs/compare/v4.5.0...v4.6.1) --- updated-dependencies: - dependency-name: serialport dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf5c405..dabdf42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,11 +141,21 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" -version = "0.8.4" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" @@ -1074,7 +1084,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" dependencies = [ "bitflags 1.3.2", - "core-foundation", + "core-foundation 0.9.3", "core-foundation-sys", "libc", "security-framework-sys", @@ -1144,12 +1154,13 @@ dependencies = [ [[package]] name = "serialport" -version = "4.5.0" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241ebb629ed9bf598b2b392ba42aa429f9ef2a0099001246a36ac4c084ee183f" +checksum = "779e2977f0cc2ff39708fef48f96f3768ac8ddd8c6caaaab82e83bd240ef99b2" dependencies = [ "bitflags 2.4.2", "cfg-if", + "core-foundation 0.10.0", "core-foundation-sys", "io-kit-sys", "mach2", @@ -1267,7 +1278,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ "bitflags 2.4.2", - "core-foundation", + "core-foundation 0.9.3", "system-configuration-sys", ] diff --git a/Cargo.toml b/Cargo.toml index 3d43e55..bf55c4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ log = "0.4.22" simplelog = "0.12.2" [dependencies.serialport] -version = "4.5.0" +version = "4.6.1" default-features = false [dependencies.reqwest]