forked from ahockersten/eventsourcing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 1.07 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "eventsourcing"
version = "0.1.1"
authors = ["autodidaddict <[email protected]>"]
description = "Event Sourcing for Rust"
documentation = "https://docs.rs/eventsourcing"
repository = "https://github.com/pholactery/eventsourcing"
keywords = ["event", "eventsourcing", "aggregate", "command"]
categories = ["asynchronous","data-structures","rust-patterns","simulation"]
readme = "README.md"
license = "MPL-2.0"
homepage = "https://github.com/pholactery/eventsourcing"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
uuid = { version = "0.6", features = ["v4"] }
reqwest = { version = "0.8.5", optional = true }
[features]
default = []
orgeventstore = ["reqwest"]
[dev-dependencies]
eventsourcing-derive = { path = "eventsourcing-derive", version = "0.1.1"}
[workspace]
members = ["eventsourcing-derive"]
[[example]]
name = "combat"
required-features = ["orgeventstore"]
[[example]]
name = "bank"
[[example]]
name = "location"
[package.metadata.docs.rs]
no-default-features = true
all-features = true