2020-12-17 17:35:11 +04:00
|
|
|
[package]
|
|
|
|
name = "messagebus"
|
2021-09-16 12:09:09 +04:00
|
|
|
version = "0.9.4"
|
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"
|
2020-12-17 17:35:11 +04:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-03 18:47:28 +04:00
|
|
|
messagebus_derive = "0.1"
|
2021-09-15 13:33:25 +04:00
|
|
|
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync", "time"] }
|
2021-07-16 20:21:27 +04:00
|
|
|
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"
|
2021-08-02 18:08:41 +04:00
|
|
|
dashmap = "4.0.2"
|
2020-12-17 17:35:11 +04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-15 13:33:25 +04:00
|
|
|
anyhow = "1.0"
|
|
|
|
env_logger = "0.9"
|
|
|
|
serde_json = "1.0"
|
2021-02-01 13:46:06 +04:00
|
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }
|