From a9f5943296b7d324b75d43f2735f4e41be0189ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 25 May 2021 20:59:32 +0000 Subject: [PATCH] deps: use mcp23017 release --- Cargo.lock | 5 +++-- Cargo.toml | 6 +----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5791b3a..196b050 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -404,8 +404,9 @@ dependencies = [ [[package]] name = "mcp23017" -version = "0.1.1" -source = "git+https://github.com/lucazulian/mcp23017.git?rev=523d71d#523d71dcb11fc0ea4bd9385ef2527ae7a7eee987" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c32fd6627e73f1cfa95c00ddcdcb5a6a6ddbd10b308d08588a502c018b6e12c" dependencies = [ "embedded-hal", ] diff --git a/Cargo.toml b/Cargo.toml index 2eb2430..0ecfe66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,17 +45,13 @@ ad9959 = { path = "ad9959" } miniconf = "0.1.0" shared-bus = {version = "0.2.2", features = ["cortex-m"] } serde-json-core = "0.3" +mcp23017 = "1.0" # rtt-target bump [dependencies.rtt-logger] git = "https://github.com/quartiq/rtt-logger.git" rev = "70b0eb5" -# rewrite -[dependencies.mcp23017] -git = "https://github.com/lucazulian/mcp23017.git" -rev = "523d71d" - [dependencies.stm32h7xx-hal] features = ["stm32h743v", "rt", "unproven", "ethernet", "quadspi"] version = "0.9.0"