-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
67 lines (62 loc) · 1.77 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "messagebus"
version = "0.9.13"
authors = ["Andrey Tkachenko <andrey@aidev.ru>"]
repository = "https://github.com/shakacode/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 = "2021"
rust-version = "1.79"
[workspace]
members = ["crates/remote", "crates/derive"]
[dependencies]
messagebus_derive = { workspace = true }
tokio = { workspace = true, features = ["parking_lot", "rt-multi-thread", "sync", "time"] }
parking_lot = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
smallvec = { workspace = true }
log = { workspace = true }
sharded-slab = { workspace = true }
thiserror = { workspace = true }
erased-serde = { workspace = true }
serde = { workspace = true, features = ["derive"] }
dashmap = { workspace = true }
ctor = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
env_logger = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
bitflags = "1"
bytes = "1"
ctor = "0.1"
dashmap = "6"
env_logger = "0.11"
erased-serde = "0.3"
futures = "0.3"
log = "0.4"
messagebus = { path = "" }
messagebus_derive = { path = "crates/derive" }
parking_lot = "0.12"
pin-project-lite = "0.2"
proc-macro2 = "1"
quinn = "0.7"
quinn-proto = "0.7"
quote = "1"
redis = "0.27"
rustls = "0.19"
serde = "1"
serde_cbor = "0.11"
serde_json = "1"
sharded-slab = "0.1"
smallvec = "1"
syn = "1"
thiserror = "2"
tokio = "1"