From 89e740bce293fb4265214e8f44d55918ab98f3b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 22:27:07 +0000 Subject: [PATCH] Bump postcard from 1.0.7 to 1.0.8 Bumps [postcard](https://github.com/jamesmunns/postcard) from 1.0.7 to 1.0.8. - [Release notes](https://github.com/jamesmunns/postcard/releases) - [Changelog](https://github.com/jamesmunns/postcard/blob/main/CHANGELOG.md) - [Commits](https://github.com/jamesmunns/postcard/compare/v1.0.7...v1.0.8) --- updated-dependencies: - dependency-name: postcard dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++++++-- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a9e287..38274f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,6 +265,12 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + [[package]] name = "encoding_rs" version = "0.8.33" @@ -708,11 +714,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "postcard" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d534c6e61df1c7166e636ca612d9820d486fe96ddad37f7abc671517b297488e" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" dependencies = [ "cobs", + "embedded-io", "heapless", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 5462724..cc3ed4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ url = { version = "2.4.1", features = ["serde"] } derive_builder = "0.12.0" -postcard = { version = "1.0.7", features = ["alloc"], optional = true } +postcard = { version = "1.0.8", features = ["alloc"], optional = true } eventsource-stream = { version = "0.2.3", optional = true } futures = { version = "0.3.28", optional = true } futures-util = { version = "0.3.28", optional = true }