cloudevents

Crates.iocloudevents
lib.rscloudevents
version0.1.1
sourcesrc
created_at2019-01-27 00:32:09.646829
updated_at2019-01-30 23:10:17.570045
descriptionImplementation of the CloudEvents specification
homepage
repositoryhttps://github.com/kichristensen/rust-cloudevents
max_upload_size
id110833
size19,381
Kim Christensen (kichristensen)

documentation

README

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:

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

// Using the builder
let event : Result<CloudEvent, Error> = CloudEventBuilder::default()
  .event_id("id")
  .source("http://www.google.com")
  .event_type("test type")
  .contenttype("application/json")
  .build();

// or using the macro
let event : Result<CloudEvent, Error> = cloudevent!(
    event_type: "test type",
    source: "http://www.google.com",
    event_id: "id",
    contenttype: "application/json",
    data: Data::from_string("test"),
)

To serialize the event as JSON, just use serde_json:

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.

Commit count: 35

cargo fmt