-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 896 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
29
30
31
32
33
34
35
[package]
name = "presage"
description = "A lightweight library for designing event-based systems"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
categories = ["development-tools"]
keywords = ["cqrs", "event-based", "command-bus"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "__docs"]
[workspace]
members = ["macros", "examples/todo"]
[workspace.package]
authors = ["Romain Delamare"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alightgoesout/presage"
version = "0.3.0"
edition = "2021"
[dependencies]
presage-macros = { path = "./macros", version = "0.3.0", optional = true }
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
[features]
default = ["derive"]
derive = ["dep:presage-macros"]