-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 757 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 757 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
25
[package]
name = "sqlite-es"
version = "0.4.13"
authors = ["John Bledsoe",
"Dave Garred <dave.garred@serverlesstechnology.com>"]
edition = "2021"
license = "Apache-2.0"
keywords = ["cqrs", "event-sourcing", "sqlite"]
description = "An SQLite implementation of an event repository for cqrs-es."
repository = "https://github.com/johnbcodes/sqlite-es"
documentation = "https://docs.rs/sqlite-es"
readme = "README.md"
[dependencies]
cqrs-es = "0.4"
async-trait = "0.1"
futures = "0.3"
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
sqlx = { version = "0.8", features = [ "json", "runtime-tokio-rustls", "sqlite" ] }
tokio = { version = "1", features = ["rt"] }
[dev-dependencies]
uuid = { version = "1.5", features = ["v4"]}