-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (39 loc) · 1.04 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
[package]
name = "messagebus"
version = "0.9.13"
authors = ["Andrey Tkachenko <[email protected]>"]
repository = "https://github.com/andreytkachenko/messagebus.git"
keywords = ["futures", "async", "tokio", "message", "bus"]
categories = ["network-programming", "asynchronous"]
description = "MessageBus allows intercommunicate with messages between modules"
license = "MIT OR Apache-2.0"
exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"]
edition = "2018"
[workspace]
members = ["crates/remote", "crates/derive"]
[dependencies]
messagebus_derive = "0.2.5"
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync", "time"] }
parking_lot = "0.11"
async-trait = "0.1"
futures = "0.3"
smallvec = "1.6"
log = "0.4"
sharded-slab = "0.1"
thiserror = "1"
erased-serde = "0.3"
serde = "1"
serde_derive = "1"
dashmap = "4.0"
ctor = "0.1.21"
[dev-dependencies]
anyhow = "1.0"
env_logger = "0.9"
serde_json = "1.0"
tokio = { version = "1", features = [
"macros",
"parking_lot",
"rt-multi-thread",
"io-util",
"sync",
] }