-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
49 lines (40 loc) · 1.25 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
45
46
47
48
49
[package]
name = "eventsourcing"
version = "0.1.5"
authors = ["Kevin Hoffman <[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 = "Apache-2.0"
homepage = "https://github.com/pholactery/eventsourcing"
edition = "2018"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
uuid = { version = "0.8.1", features = ["v4"], optional = true }
reqwest = { version = "0.10.1", features = ["json", "blocking"], optional = true }
[features]
default = []
eventstore = [ "uuid"]
orgeventstore = ["reqwest", "eventstore"]
[dev-dependencies]
eventsourcing-derive = { path = "eventsourcing-derive", version = "0.1.2"}
[workspace]
members = ["eventsourcing-derive"]
[[example]]
name = "combat"
required-features = ["orgeventstore"]
[[example]]
name = "bank"
required-features = ["eventstore"]
[[example]]
name = "location"
required-features = ["eventstore"]
[package.metadata.docs.rs]
no-default-features = true
all-features = true