cdevents_sdk/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
//#![warn(missing_docs)]
// TODO remove unwrap(), expect(...)
// TODO reduce clone()
mod cdevent;
mod context;
#[cfg(feature = "cloudevents")]
pub mod cloudevents;
mod error;
mod generated;
mod id;
pub(crate) mod serde;
mod subject;
mod uri;
mod uri_reference;

pub use cdevent::*;
pub use id::*;
pub(crate) use context::*;
pub use error::*;
pub use generated::*;
pub use subject::*;
pub use uri::*;
pub use uri_reference::*;