2021-09-16 16:37:45 +04:00
|
|
|
[package]
|
|
|
|
name = "messagebus_remote"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrey Tkachenko <andrey@aidev.ru>"]
|
|
|
|
repository = "https://github.com/andreytkachenko/messagebus.git"
|
|
|
|
keywords = ["futures", "async", "tokio", "message", "bus", "quic", "remote", "rpc", "parallel", "computing"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
description = "MessageBus remote allows intercommunicate by messages between instances"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"]
|
2021-09-20 16:48:20 +04:00
|
|
|
edition = "2021"
|
2021-09-16 16:37:45 +04:00
|
|
|
|
|
|
|
# [features]
|
|
|
|
# quic = ["quinn"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-16 19:04:34 +04:00
|
|
|
thiserror = "1.0"
|
|
|
|
messagebus = { path="../../" }
|
2021-09-16 16:37:45 +04:00
|
|
|
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
|
|
parking_lot = "0.11"
|
2021-09-16 19:04:34 +04:00
|
|
|
quinn = "0.7"
|
|
|
|
rmp = "0.8.10"
|
|
|
|
rmp-serde = "0.15.5"
|
|
|
|
erased-serde = "0.3.16"
|
|
|
|
serde_derive = "1.0.130"
|
|
|
|
serde = "1.0.130"
|
2021-09-20 19:31:06 +04:00
|
|
|
futures = "0.3.17"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1.11.0", features = ["full"] }
|
2021-09-16 19:04:34 +04:00
|
|
|
# quinn = { version = "0.7", optional = true }
|
|
|
|
|