From e81a70a1975daf4cb5afe83bd629e0c802b90ff2 Mon Sep 17 00:00:00 2001 From: Andrey Tkachenko Date: Fri, 3 Sep 2021 18:47:28 +0400 Subject: [PATCH] version bump --- Cargo.toml | 5 ++--- derive/Cargo.toml | 9 ++++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a9ee165..8a03444 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "messagebus" -version = "0.8.0" +version = "0.9.0" authors = ["Andrey Tkachenko "] repository = "https://github.com/andreytkachenko/messagebus.git" keywords = ["futures", "async", "tokio", "message", "bus"] @@ -13,9 +13,8 @@ edition = "2018" [features] quic = ["quinn"] - [dependencies] -messagebus_derive = { path = "./derive" } +messagebus_derive = "0.1" tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] } parking_lot = "0.11" async-trait = "0.1" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 012bfcc..3fa72f1 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,13 @@ [package] name = "messagebus_derive" version = "0.1.0" +authors = ["Andrey Tkachenko "] +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" [lib] @@ -9,4 +16,4 @@ proc-macro = true [dependencies] proc-macro2 = "1" quote = "1" -syn = "1" +syn = {version = "1", features = ["full"]}