asynchronous and synchronous interfaces and persistence implementations for your OOD architecture
Go to file
Dmitriy Pleshevskiy b4cbeaf444 doc: fix typo in readme 2021-10-12 23:00:12 +03:00
examples/web inital commit 2021-10-12 18:14:02 +03:00
src fix: impl error for r2d2_postgres 2021-10-12 22:59:06 +03:00
.gitignore inital commit 2021-10-12 18:14:02 +03:00
Cargo.lock fix: impl error for r2d2_postgres 2021-10-12 22:59:06 +03:00
Cargo.toml fix: impl error for r2d2_postgres 2021-10-12 22:59:06 +03:00
README.md doc: fix typo in readme 2021-10-12 23:00:12 +03:00

README.md

OOD Persistence

Asynchronous and synchronous interfaces and persistence implementations for your OOD architecture

Installation

Add ood_persistence = { version = "0", features = ["<IMPLEMENTATION_NAME>"] } as a dependency in Cargo.toml.

NOTE: change <IMPLEMENTATION_NAME> to feature name from available list. See Cargo.toml for more information.

Cargo.toml example:

[package]
name = "my-crate"
version = "0.1.0"
authors = ["Me <user@rust-lang.org>"]

[dependencies]
ood_persistence = { version = "0", features = ["bb8_postgres"] }

Usage

See examples directory.