forked from jwilger/mneme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 891 Bytes
/
Cargo.toml
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
26
27
28
[package]
name = "mneme"
version = "0.4.2"
authors = ["John Wilger <john@johnwilger.com>"]
edition = "2024"
description = "An event-sourcing library for Rust projects."
repository = "https://github.com/jwilger/mneme"
license = "MIT"
keywords = ["events", "event-sourcing", "cqrs", "eventstoredb", "kurrent"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
bytes = "1.10"
chrono = { version = "0.4", features = ["serde"] }
eventstore = "4.0"
futures = "0.3"
nutype = { version = "0.6", features = ["regex", "serde"] }
rand = { version = "0.9", features = ["small_rng"] }
getrandom = "0.3"
serde = { version = "1.0", features = ["derive", "unstable"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.43", features = ["full"] }
tokio-stream = { version = "0.1", features = ["full"] }
uuid = { version = "1.13", features = ["v4", "serde"] }
tonic = "0.12"