From 16329079c53602689c2626710a54fd96f3735435 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:51:12 +0000 Subject: [PATCH] Bump lm75 from 0.2.0 to 1.0.0 Bumps [lm75](https://github.com/eldruin/lm75-rs) from 0.2.0 to 1.0.0. - [Release notes](https://github.com/eldruin/lm75-rs/releases) - [Changelog](https://github.com/eldruin/lm75-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/eldruin/lm75-rs/compare/v0.2.0...v1.0.0) --- updated-dependencies: - dependency-name: lm75 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++------- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70ef08e..9f8ff0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,7 +140,7 @@ dependencies = [ "bare-metal 0.2.5", "bitfield", "critical-section", - "embedded-hal", + "embedded-hal 0.2.7", "volatile-register", ] @@ -217,6 +217,12 @@ dependencies = [ "void", ] +[[package]] +name = "embedded-hal" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89" + [[package]] name = "embedded-io" version = "0.6.1" @@ -424,11 +430,11 @@ dependencies = [ [[package]] name = "lm75" -version = "0.2.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f05acdc7a7d6da7b9be48c2d1de2f9757d37d3a83564aa82b4ae6d7ad15d0db6" +checksum = "430c2d95694c3f32c3ed0cd2f91e07c8a2935ca55697f174d9060a9eefa0ddf0" dependencies = [ - "embedded-hal", + "embedded-hal 1.0.0", ] [[package]] @@ -827,7 +833,7 @@ checksum = "c6b8d3f0e34309c22ca4a9a27d24fa493e31573485f3493802b75b9d706756a6" dependencies = [ "atomic-polyfill", "cortex-m", - "embedded-hal", + "embedded-hal 0.2.7", "nb 1.1.0", ] @@ -914,7 +920,7 @@ dependencies = [ "cast", "cortex-m", "embedded-dma", - "embedded-hal", + "embedded-hal 0.2.7", "embedded-storage", "fugit", "nb 1.1.0", @@ -990,7 +996,7 @@ dependencies = [ "cortex-m", "cortex-m-rt", "cortex-m-rtic", - "embedded-hal", + "embedded-hal 0.2.7", "embedded-time", "heapless 0.7.17", "idsp", diff --git a/Cargo.toml b/Cargo.toml index aeffcd3..dcd1d19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ embedded-hal = "0.2.7" bitbybit = "1.3.2" arbitrary-int = "1.2.7" # stabilizer = "0.9.0" -lm75 = "0.2" +lm75 = "1.0" bytemuck = { version = "1.14.3", features = ["derive"], default-features = false } # Note: Keep in-sync with `py/setup.py` miniconf = "0.9"