Bump btleplug from 0.11.6 to 0.11.7 in the minor-updates group

Bumps the minor-updates group with 1 update: [btleplug](https://github.com/deviceplug/btleplug).


Updates `btleplug` from 0.11.6 to 0.11.7
- [Changelog](https://github.com/deviceplug/btleplug/blob/master/CHANGELOG.md)
- [Commits](https://github.com/deviceplug/btleplug/compare/0.11.6...0.11.7)

---
updated-dependencies:
- dependency-name: btleplug
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2025-01-01 17:18:57 +00:00 committed by GitHub
parent 44222843d8
commit 2efa5b44b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 15 deletions

47
Cargo.lock generated
View file

@ -152,11 +152,10 @@ dependencies = [
[[package]] [[package]]
name = "bluez-async" name = "bluez-async"
version = "0.7.2" version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ce7d4413c940e8e3cb6afc122d3f4a07096aca259d286781128683fc9f39d9b" checksum = "353dc0fbd494ab1d066ffdff16f07acbea46ca63f507e093c07fdf2408d84300"
dependencies = [ dependencies = [
"async-trait",
"bitflags", "bitflags",
"bluez-generated", "bluez-generated",
"dbus", "dbus",
@ -166,25 +165,25 @@ dependencies = [
"log", "log",
"serde", "serde",
"serde-xml-rs", "serde-xml-rs",
"thiserror", "thiserror 2.0.9",
"tokio", "tokio",
"uuid", "uuid",
] ]
[[package]] [[package]]
name = "bluez-generated" name = "bluez-generated"
version = "0.3.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d1c659dbc82f0b8ca75606c91a371e763589b7f6acf36858eeed0c705afe367" checksum = "9676783265eadd6f11829982792c6f303f3854d014edfba384685dcf237dd062"
dependencies = [ dependencies = [
"dbus", "dbus",
] ]
[[package]] [[package]]
name = "btleplug" name = "btleplug"
version = "0.11.6" version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82837101dad9a257a3ffe35fbc2ef4df9a27aecbe5343ce83ac233bcab283394" checksum = "b668804e0728a09c83cd9b94c9e1176717ea5522e8a3cb3688c2ac9a5f6e137c"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bitflags", "bitflags",
@ -200,7 +199,7 @@ dependencies = [
"objc2-foundation", "objc2-foundation",
"once_cell", "once_cell",
"static_assertions", "static_assertions",
"thiserror", "thiserror 2.0.9",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
"uuid", "uuid",
@ -547,9 +546,9 @@ checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.10.5" version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [ dependencies = [
"either", "either",
] ]
@ -570,7 +569,7 @@ dependencies = [
"combine", "combine",
"jni-sys", "jni-sys",
"log", "log",
"thiserror", "thiserror 1.0.69",
"walkdir", "walkdir",
] ]
@ -842,7 +841,7 @@ checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782"
dependencies = [ dependencies = [
"log", "log",
"serde", "serde",
"thiserror", "thiserror 1.0.69",
"xml-rs", "xml-rs",
] ]
@ -932,7 +931,16 @@ version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
version = "2.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
dependencies = [
"thiserror-impl 2.0.9",
] ]
[[package]] [[package]]
@ -946,6 +954,17 @@ dependencies = [
"syn", "syn",
] ]
[[package]]
name = "thiserror-impl"
version = "2.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]] [[package]]
name = "time" name = "time"
version = "0.3.37" version = "0.3.37"

View file

@ -42,7 +42,7 @@ base64 = { version = "0.22.1", optional = true }
clap = { version = "4.5.23", features = ["derive"], optional = true } clap = { version = "4.5.23", features = ["derive"], optional = true }
embedded-graphics = { version = "0.8.1", optional = true } embedded-graphics = { version = "0.8.1", optional = true }
hidapi = { version = "2.6.3", optional = true } hidapi = { version = "2.6.3", optional = true }
btleplug = { version = "0.11.6", optional = true } btleplug = { version = "0.11.7", optional = true }
uuid = { version = "1.11.0", optional = true } uuid = { version = "1.11.0", optional = true }
tokio = { version = "1.39.2", features = ["rt"], optional = true } tokio = { version = "1.39.2", features = ["rt"], optional = true }
serde = { version = "1.0.217", features = ["derive"], optional = true } serde = { version = "1.0.217", features = ["derive"], optional = true }