30 lines
940 B
TOML
30 lines
940 B
TOML
[package]
|
|
name = "messagebus"
|
|
version = "0.6.5"
|
|
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"
|
|
license = "MIT OR Apache-2.0"
|
|
exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
|
|
parking_lot = "0.11.1"
|
|
async-trait = "0.1.42"
|
|
futures = "0.3.8"
|
|
smallvec = "1.6.1"
|
|
log = "0.4.14"
|
|
sharded-slab = "0.1.1"
|
|
thiserror = "1.0.25"
|
|
erased-serde = "0.3.16"
|
|
serde = "1.0.126"
|
|
serde_derive = "1.0.126"
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.41"
|
|
env_logger = "0.8.4"
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }
|