We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cca38 commit cd2ebdaCopy full SHA for cd2ebda
Makefile
@@ -3,6 +3,7 @@ qa: analyze test
3
analyze:
4
@cargo clippy
5
@cargo fmt --check
6
+ @cargo doc --all-features --no-deps --document-private-items
7
8
test:
9
@cargo test
src/event/event_types/management_event.rs
@@ -1,6 +1,7 @@
1
use chrono::{DateTime, Utc};
2
use serde::{Deserialize, Serialize};
use serde_json::Value;
+
#[cfg(feature = "cloudevents")]
use cloudevents::EventBuilder;
src/event/trace_info.rs
//! This module holds supporting traits for the "Tracing" feature of eventsourcingdb.
use crate::error::EventError;
0 commit comments