Skip to content

Commit 0feadc3

Browse files
authored
Merge branch 'master' into mqtt_rust
2 parents d736c11 + 364ad7b commit 0feadc3

File tree

16 files changed

+123
-134
lines changed

16 files changed

+123
-134
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "LICENSE"
66
edition = "2018"
@@ -19,13 +19,13 @@ name = "cloudevents"
1919
[dependencies]
2020
serde = { version = "^1.0", features = ["derive"] }
2121
serde_json = "^1.0"
22-
serde-value = "^0.6"
2322
chrono = { version = "^0.4", features = ["serde"] }
2423
delegate-attr = "^0.2"
2524
base64 = "^0.12"
2625
url = { version = "^2.1", features = ["serde"] }
2726
snafu = "^0.6"
2827
openssl-sys = "*"
28+
bitflags = "^1.2"
2929

3030
[target."cfg(not(target_arch = \"wasm32\"))".dependencies]
3131
hostname = "^0.3"
@@ -39,6 +39,7 @@ uuid = { version = "^0.8", features = ["v4", "wasm-bindgen"] }
3939
rstest = "0.6"
4040
claim = "0.3.1"
4141
version-sync = "^0.9"
42+
serde_yaml = "0.8"
4243

4344
[features]
4445
vendored = ["openssl-sys/vendored"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To get started, add the dependency to `Cargo.toml`:
3232

3333
```toml
3434
[dependencies]
35-
cloudevents-sdk = "0.3.0"
35+
cloudevents-sdk = "0.3.1"
3636
```
3737

3838
Now you can start creating events:

cloudevents-sdk-actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-actix-web"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "../LICENSE"
66
edition = "2018"

cloudevents-sdk-actix-web/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//!
4242
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`]
4343
44-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.3.0")]
44+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.3.1")]
4545
#![deny(broken_intra_doc_links)]
4646

4747
#[macro_use]

cloudevents-sdk-rdkafka/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-rdkafka"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Pranav Bhatt <[email protected]>"]
55
edition = "2018"
66
license-file = "../LICENSE"

cloudevents-sdk-rdkafka/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//! # }
4949
//! ```
5050
51-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.3.0")]
51+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.3.1")]
5252
#![deny(broken_intra_doc_links)]
5353

5454
#[macro_use]

cloudevents-sdk-reqwest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-reqwest"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "../LICENSE"
66
edition = "2018"

cloudevents-sdk-reqwest/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//!
3030
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`].
3131
32-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.3.0")]
32+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.3.1")]
3333
#![deny(broken_intra_doc_links)]
3434

3535
#[macro_use]

example-projects/reqwest-wasm-example/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/event/data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
use serde::export::Formatter;
21
use serde_json::Value;
32
use std::convert::TryFrom;
43
use std::fmt;
4+
use std::fmt::Formatter;
55

66
/// Event [data attribute](https://github.com/cloudevents/spec/blob/master/spec.md#event-data) representation
77
#[derive(PartialEq, Eq, Debug, Clone)]

0 commit comments

Comments
 (0)