File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1
1
# eventsourcingdb-client-rust
2
- The official Rust client SDK for EventSourcingDB.
2
+
3
+ The official Rust client SDK for [ EventSourcingDB] ( https://www.eventsourcingdb.io/ ) .
4
+
5
+ # Project status
6
+
7
+ This is a work in progress and not yet ready for production use.
8
+ Based on the [ compliance criteria] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/ ) the SDK covers these criteria:
9
+
10
+ - ❌ [ Essentials] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#essentials )
11
+ - ❌ [ Writing Events] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#writing-events )
12
+ - ❌ [ Reading Events] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#reading-events )
13
+ - ❌ [ Using EventQL] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#using-eventql )
14
+ - ❌ [ Observing Events] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#observing-events )
15
+ - ❌ [ Metadata and Discovery] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#metadata-and-discovery )
16
+ - ❌ [ Testcontainers Support] ( https://docs.eventsourcingdb.io/client-sdks/compliance-criteria/#testcontainers-support )
Original file line number Diff line number Diff line change
1
+ #![ doc = include_str ! ( "../README.md" ) ]
2
+
3
+ #![ deny(
4
+ ambiguous_negative_literals,
5
+ clippy:: pedantic,
6
+ missing_debug_implementations,
7
+ missing_docs,
8
+ trivial_casts,
9
+ trivial_numeric_casts,
10
+ unused_extern_crates,
11
+ unused_import_braces,
12
+ unused_qualifications,
13
+ unused_results,
14
+ unsafe_code,
15
+ warnings
16
+ ) ]
17
+
1
18
pub mod error;
2
19
#[ cfg( feature = "testcontainer" ) ]
3
20
pub mod container;
You can’t perform that action at this time.
0 commit comments