From ba05c7ff30a81c622dc719596e54deb7c1caf1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Wed, 1 Nov 2023 15:09:46 +0100 Subject: [PATCH] released minimq miniconf --- Cargo.lock | 17 ++++++++++------- Cargo.toml | 6 +++--- ad9959/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e71afcace..d2045fd29e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -427,8 +427,9 @@ dependencies = [ [[package]] name = "miniconf" -version = "0.8.0" -source = "git+https://github.com/quartiq/miniconf.git?branch=rj/bump-deps#0755211c60ec2da6b349e65ec6572ca6ef6058a1" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9df2d7bdba3acb28460c347b21e1e88d869f2716ebe060eb6a79f7b76b57de72" dependencies = [ "embedded-io", "heapless", @@ -443,8 +444,9 @@ dependencies = [ [[package]] name = "miniconf_derive" -version = "0.8.0" -source = "git+https://github.com/quartiq/miniconf.git?branch=rj/bump-deps#0755211c60ec2da6b349e65ec6572ca6ef6058a1" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89f46d25f40e41f552d76b8eb9e225fe493ebf978a5c3f42b7599e45cfe6b4e3" dependencies = [ "proc-macro2", "quote", @@ -453,8 +455,9 @@ dependencies = [ [[package]] name = "minimq" -version = "0.7.0" -source = "git+https://github.com/quartiq/minimq?branch=rj/std-embedded-nal-0.2#07ebfc1d36ccd7662fc405f805cc18d2625e8c41" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b561c2c86a3509f7c514f546fb24755753a30fdcf67cce8d5f2f38688483cd31" dependencies = [ "bit_field", "embedded-nal", @@ -893,7 +896,7 @@ dependencies = [ [[package]] name = "stabilizer" -version = "0.8.1" +version = "0.9.0" dependencies = [ "ad9959", "bbqueue", diff --git a/Cargo.toml b/Cargo.toml index cd79c03f66..cc6a336c60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ embedded-hal = "0.2.7" num_enum = { version = "0.7.0", default-features = false } paste = "1" idsp = "0.12" -ad9959 = { path = "ad9959", version = "0.2.0" } +ad9959 = { path = "ad9959", version = "0.2.1" } mcp230xx = "1.0" mutex-trait = "0.2" fugit = "0.3" @@ -59,12 +59,12 @@ lm75 = "0.2" enum-iterator = "1.4.1" rand_xorshift = "0.3.0" rand_core = "0.6.4" -minimq = { git = "https://github.com/quartiq/minimq", branch = "release-0.8.0", version = "0.8.0" } # "0.8" +minimq = "0.8.0" # patch with https://github.com/rust-embedded-community/usb-device/pull/129 usb-device = "0.2.9" usbd-serial = "0.1.1" # Keep this synced with the miniconf version in py/setup.py -miniconf = { git = "https://github.com/quartiq/miniconf.git", branch = "rj/bump-deps", version = "0.9.0" } # "0.9" +miniconf = "0.9.0" smoltcp-nal = { version = "0.4.1", features = ["shared-stack"]} bbqueue = "0.5" diff --git a/ad9959/Cargo.toml b/ad9959/Cargo.toml index 75a0809ad2..f843430f37 100644 --- a/ad9959/Cargo.toml +++ b/ad9959/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ad9959" -version = "0.2.0" +version = "0.2.1" authors = ["Ryan Summers "] license = "MIT OR Apache-2.0" edition = "2018"