ood_persistence/Cargo.toml

49 lines
1.5 KiB
TOML

[package]
name = "ood_persistence"
version = "0.3.1"
edition = "2018"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
repository = "https://github.com/pleshevskiy/ood_persistence"
description = "Asynchronous and synchronous interfaces and persistence implementations for your OOD architecture"
keywords = ["objected", "design", "architecture", "interface", "implementation"]
categories = ["rust-patterns", "database", "database-implementations"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
nightly = []
async = ["async-trait"]
sync = []
bb8_postgres = ["async", "bb8", "bb8-postgres"]
r2d2_postgres = ["sync", "r2d2", "r2d2-postgres"]
r2d2_sqlite = ["sync", "r2d2", "r2d2-sqlite"]
r2d2_mysql = ["sync", "r2d2", "r2d2-mysql"]
[dependencies]
async-trait = { version = "0.1", optional = true }
bb8 = { version = "0.7", optional = true }
bb8-postgres = { version = "0.7", optional = true }
r2d2 = { version = "0.8", optional = true }
r2d2-postgres = { package = "r2d2_postgres", version = "0.18", optional = true }
r2d2-sqlite = { package = "r2d2_sqlite", version = "0.19", optional = true }
r2d2-mysql = { package = "r2d2_mysql", version = "18.0", optional = true }
[package.metadata.docs.rs]
all-features = true
[workspace]
members = ["examples/*"]
[[example]]
name = "simple"
required-features = ["r2d2_postgres"]
[[example]]
name = "transaction"
required-features = ["r2d2_postgres", "nightly"]