messagebus/Cargo.toml

28 lines
896 B
TOML
Raw Normal View History

2020-12-17 17:35:11 +04:00
[package]
name = "messagebus"
2021-06-24 14:14:53 +04:00
version = "0.6.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"]
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-06-22 18:43:06 +04:00
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
2020-12-17 17:35:11 +04:00
parking_lot = "0.11.1"
async-trait = "0.1.42"
futures = "0.3.8"
anyhow = "1.0.34"
tokio-util = "0.6.7"
async-stream = "0.3.2"
smallvec = "1.6.1"
log = "0.4.14"
2021-06-22 18:43:06 +04:00
sharded-slab = "0.1.1"
2020-12-17 17:35:11 +04:00
[dev-dependencies]
2021-06-23 16:20:10 +04:00
env_logger = "0.8.4"
2021-02-01 13:46:06 +04:00
tokio = { version = "1", features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }