forked from serverlesstechnology/postgres-es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "postgres-es"
version = "0.1.0"
authors = ["Dave Garred <dave.garred@serverlesstechnology.com>"]
edition = "2018"
license-file = "LICENSE"
keywords = ["cqrs", "event-sourcing", "serverless", "lambda"]
description = "A Postgres implementation of an event store for cqrs-es."
repository = "https://github.com/serverlesstechnology/postgres-es"
documentation = "https://docs.rs/postgres-es"
readme = "README.md"
[dependencies]
cqrs-es = "0.1.0"
postgres = {version = "0.15.2", features = ["with-serde_json"]}
postgres-shared = "0.4.2"
serde = { version = "1.0.126", features = ["derive"]}
serde_json = "1.0.64"
[dev-dependencies]
static_assertions = "0.3"
uuid = { version = "0.8.2", features = ["v4"]}