messagebus/Cargo.toml

33 lines
971 B
TOML
Raw Normal View History

2020-12-17 17:35:11 +04:00
[package]
name = "messagebus"
2021-07-30 16:58:30 +04:00
version = "0.8.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]
messagebus_derive = { path = "./derive" }
2021-06-22 18:43:06 +04:00
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
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"
2020-12-17 17:35:11 +04:00
[dev-dependencies]
anyhow = "1.0.41"
2021-06-23 16:20:10 +04:00
env_logger = "0.8.4"
serde_json = "1.0.64"
2021-02-01 13:46:06 +04:00
tokio = { version = "1", features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }