messagebus/Cargo.toml

44 lines
1.0 KiB
TOML
Raw Normal View History

2020-12-17 17:35:11 +04:00
[package]
name = "messagebus"
2021-12-16 16:12:28 +04:00
version = "0.9.13"
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"]
2021-09-24 12:46:15 +04:00
edition = "2018"
2020-12-17 17:35:11 +04:00
2021-09-16 19:04:34 +04:00
[workspace]
members = ["crates/remote", "crates/derive"]
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"
2021-09-15 13:33:25 +04:00
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync", "time"] }
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-09-20 19:31:06 +04:00
dashmap = "4.0"
2021-10-15 19:31:33 +04:00
ctor = "0.1.21"
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"
tokio = { version = "1", features = [
"macros",
"parking_lot",
"rt-multi-thread",
"io-util",
"sync",
] }