[package]
name = "eventually"
description = "Crate for using Event Sourcing in Rust applications"
version = "0.4.0-alpha.1"
edition = "2018"
authors = ["Danilo Cianfrone <danilocianfr@gmail.com>"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/ar3s3ru/eventually-rs"
categories = ["rust-patterns", "web-programming", "asynchronous", "data-structures"]
keywords = ["architecture", "ddd", "event-sourcing", "cqrs", "es"]
[features]
default = []
serde = ["eventually-core/serde"]
postgres = ["eventually-postgres"]
full = ["serde", "postgres"]
[dependencies]
eventually-core = { version = "0.4.0-alpha.1", path = "../eventually-core" }
eventually-util = { version = "0.4.0-alpha.1", path = "../eventually-util" }
eventually-postgres = { version = "0.2.0-alpha.1", path = "../eventually-postgres", optional = true }
[dev-dependencies]
futures = { version = "0.3", features = ["async-await"] }
tokio-test = "0.2"