CloudEvents

Implementation of the core v0.2 CloudEvents specification and v0.2 JSON Event Format.

This library is meant to provide the base for other CloudEvent transport bindings and formats. It only implements the core specification and the JSON format.

Usage

A cloud event can be create in two different ways:

```rust use cloudevents::{ cloudevent_v02, v02::{CloudEventBuilder} }; use std::error::Error;

// Using the builder let event : Result = CloudEventBuilder::default() .eventid("id") .source("http://www.google.com") .eventtype("test type") .contenttype("application/json") .build();

// or using the macro let event : Result = cloudevent!( eventtype: "test type", source: "http://www.google.com", eventid: "id", contenttype: "application/json", data: Data::from_string("test"), ) ```

To serialize the event as JSON, just use serde_json:

rust let json = serde_json::to_string(&event)?;

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.