From 4870e8398701b8be39a297db1852d5490761166c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jun 2022 06:26:06 +0000 Subject: [PATCH] build(deps): update postcard requirement from 0.7 to 1.0 Updates the requirements on [postcard](https://github.com/jamesmunns/postcard) to permit the latest version. - [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/v0.7.0...v1.0.0) --- updated-dependencies: - dependency-name: postcard dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- serde-encrypt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde-encrypt/Cargo.toml b/serde-encrypt/Cargo.toml index ec3a9fb..15009e7 100644 --- a/serde-encrypt/Cargo.toml +++ b/serde-encrypt/Cargo.toml @@ -15,7 +15,7 @@ version = "0.7.0" serde-encrypt-core = {version = "0.7.0", path = "../serde-encrypt-core", default-features = false} bincode = {version = "1.3", optional = true} -postcard = {version = "0.7", default-features = false, features = ["alloc"]} +postcard = {version = "1.0", default-features = false, features = ["alloc"]} serde = {version = "1.0", default-features = false} serde_cbor = {version = "0.11", default-features = false, features = ["alloc"]}