From 8b4241ea3fa102419ae21f53b44569f554e48674 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Fri, 12 May 2023 08:06:07 -0400 Subject: [PATCH] 0.1.0 --- Cargo.lock | 2 +- examples/Cargo.lock | 2 +- waku-bindings/Cargo.toml | 2 +- waku-bindings/src/general/mod.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 256a0ef..b0d051e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1674,7 +1674,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "waku-bindings" -version = "0.1.0-rc.4" +version = "0.1.0" dependencies = [ "aes-gcm", "base64 0.21.0", diff --git a/examples/Cargo.lock b/examples/Cargo.lock index 2fd88c0..babfde8 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -1497,7 +1497,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "waku-bindings" -version = "0.1.0-rc.3" +version = "0.1.0" dependencies = [ "aes-gcm", "base64 0.21.0", diff --git a/waku-bindings/Cargo.toml b/waku-bindings/Cargo.toml index e1ee506..3062e08 100644 --- a/waku-bindings/Cargo.toml +++ b/waku-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "waku-bindings" -version = "0.1.0-rc.4" +version = "0.1.0" edition = "2021" authors = [ "Daniel Sanchez Quiros " diff --git a/waku-bindings/src/general/mod.rs b/waku-bindings/src/general/mod.rs index 2795094..60fa7c4 100644 --- a/waku-bindings/src/general/mod.rs +++ b/waku-bindings/src/general/mod.rs @@ -79,7 +79,7 @@ impl From> for Result { #[derive(Clone, Serialize, Deserialize, Debug)] #[serde(rename_all = "camelCase")] pub struct WakuMessage { - #[serde(with = "base64_serde")] + #[serde(with = "base64_serde", default = "Vec::new")] payload: Vec, /// The content topic to be set on the message content_topic: WakuContentTopic,