asynchronous and synchronous interfaces and persistence implementations for your OOD architecture
Go to file
Dmitriy Pleshevskiy 18eaee9b16 feat: add transactions
Closes #1
2021-10-17 15:13:01 +03:00
.vscode feat: add transactions 2021-10-17 15:13:01 +03:00
examples/web feat: add transactions 2021-10-17 15:13:01 +03:00
src feat: add transactions 2021-10-17 15:13:01 +03:00
.gitignore feat: add transactions 2021-10-17 15:13:01 +03:00
Cargo.lock feat: add transactions 2021-10-17 15:13:01 +03:00
Cargo.toml feat: add transactions 2021-10-17 15:13:01 +03:00
README.md feat: add transactions 2021-10-17 15:13:01 +03:00
rust-toolchain.toml feat: add transactions 2021-10-17 15:13:01 +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"] }

In stable rust channel you can use only connection interface, but if you use nightly channel, add an additional "nightly" feature to your Cargo.toml and you can use transactions as well.

Usage

See examples directory.