messagebus/Cargo.toml

39 lines
1.0 KiB
TOML
Raw Normal View History

2020-12-17 17:35:11 +04:00
[package]
name = "messagebus"
2021-09-22 16:47:25 +04:00
version = "0.9.6"
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-20 16:48:20 +04:00
edition = "2021"
2020-12-17 17:35:11 +04:00
2021-09-16 19:04:34 +04:00
[workspace]
members = [
"crates/remote",
"crates/derive",
]
2020-12-17 17:35:11 +04:00
[dependencies]
2021-09-22 16:47:25 +04:00
messagebus_derive = "0.2"
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"
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"] }