asynchronous and synchronous interfaces and persistence implementations for your OOD architecture
Go to file
Dmitriy Pleshevskiy 944715d610 inital commit 2021-10-12 18:14:02 +03:00
examples/web inital commit 2021-10-12 18:14:02 +03:00
src inital commit 2021-10-12 18:14:02 +03:00
.gitignore inital commit 2021-10-12 18:14:02 +03:00
Cargo.lock inital commit 2021-10-12 18:14:02 +03:00
Cargo.toml inital commit 2021-10-12 18:14:02 +03:00
README.md inital commit 2021-10-12 18:14:02 +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_NOTE> 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.