Skip to content

Commit

Permalink
Update readmes and package
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillFish8 committed Apr 12, 2023
1 parent 09b40b0 commit 182194e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Datacake provides several utility libraries as well as some pre-made data store
storage trait.
- `datacake-sqlite` - A pre-built and tested implementation of the datacake `Storage` trait built
upon SQLite.
- `datacake-lmdb` - A pre-built and tested implementation of the datacake `Storage` trait built upon LMDB.
- `datacake-rpc` - A fast, zero-copy RPC framework with a familiar actor-like feel to it.

### Examples
Expand Down
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
//! storage trait.
//! - `datacake-sqlite` - A pre-built and tested implementation of the datacake `Storage` trait built
//! upon SQLite.
//! - `datacake-lmdb` - A pre-built and tested implementation of the datacake `Storage` trait built
//! upon LMDB.
//! - `datacake-rpc` - A fast, zero-copy RCP framework with a familiar actor-like feel to it.
//!
//! ### Examples
Expand Down Expand Up @@ -128,6 +130,11 @@ pub use datacake_crdt as crdt;
/// A re-export of the `datacake-eventual_consistency` package, A pre-built cluster extension that
/// provides you with a eventually consistent store with automatic tombstone removal.
pub use datacake_eventual_consistency as eventual_consistency;
#[cfg(feature = "datacake-lmdb")]
/// A re-export of the `datacake-lmdb` package, giving you a pre-built and tested storage
/// implementation for the eventually consistent store, although this may not be suited for
/// all applications, it is useful for most.
pub use datacake_lmdb as lmdb;
#[cfg(feature = "datacake-node")]
/// A re-export of the `datacake-node` package, the core membership system for building
/// your own cluster system.
Expand Down

0 comments on commit 182194e

Please sign in to comment.