2020-12-17 17:35:11 +04:00
|
|
|
[package]
|
|
|
|
name = "messagebus"
|
2023-02-15 14:05:56 +04:00
|
|
|
version = "0.10.0"
|
2020-12-17 17:35:11 +04:00
|
|
|
authors = ["Andrey Tkachenko <andrey@aidev.ru>"]
|
|
|
|
repository = "https://github.com/andreytkachenko/messagebus.git"
|
|
|
|
keywords = ["futures", "async", "tokio", "message", "bus"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-12-22 14:04:00 +04:00
|
|
|
description = "MessageBus allows intercommunicate with messages between modules"
|
2023-02-15 14:05:56 +04:00
|
|
|
exclude = [".gitignore", ".cargo/config", ".github/**", ".drone.yml"]
|
2020-12-17 17:35:11 +04:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-02-15 14:05:56 +04:00
|
|
|
edition = "2021"
|
2021-09-16 19:04:34 +04:00
|
|
|
|
2020-12-17 17:35:11 +04:00
|
|
|
[dependencies]
|
2021-10-15 19:31:33 +04:00
|
|
|
messagebus_derive = "0.2.5"
|
|
|
|
|
2023-02-15 14:05:56 +04:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
async-channel = "1.8.0"
|
|
|
|
crossbeam = "0.8"
|
|
|
|
dashmap = "5.3.3"
|
|
|
|
erased-serde = "0.3.24"
|
2021-07-16 20:21:27 +04:00
|
|
|
futures = "0.3"
|
2023-02-15 14:05:56 +04:00
|
|
|
lazy_static = "1.4"
|
2021-07-16 20:21:27 +04:00
|
|
|
log = "0.4"
|
2023-02-15 14:05:56 +04:00
|
|
|
parking_lot = "0.12"
|
|
|
|
regex = "1"
|
|
|
|
segvec = "0.1.5"
|
|
|
|
serde = "1.0"
|
|
|
|
sharded-slab = "0.1.4"
|
|
|
|
tokio = { version = "1.17.0", features = ["sync", "rt"] }
|
|
|
|
smallvec = { version = "1.10.0", features = ["const_new"] }
|
2020-12-17 17:35:11 +04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-15 14:05:56 +04:00
|
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
|
|
|
waker-fn = "1.1.0"
|
|
|
|
|
|
|
|
|