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