Skip to content

Commit

Permalink
Merge pull request #87 from wenig/fix/multiple-remote-messages
Browse files Browse the repository at this point in the history
Fix/multiple remote messages
  • Loading branch information
wenig authored Nov 20, 2023
2 parents a3c134b + fe28d34 commit c9ca7a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-telepathy"
version = "0.5.5"
version = "0.5.6"
authors = ["wenig <info@pwenig.de>"]
edition = "2018"
license = "Apache-2.0"
Expand Down Expand Up @@ -32,7 +32,7 @@ rayon = "1.5.0"
futures-sink = "0.3.21"

[dependencies]
actix_telepathy_derive = { version = "0.3.3", optional = true }
actix_telepathy_derive = { version = "0.3.4", optional = true }

log = "0.4"
env_logger = "0.10"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![crates.io](https://img.shields.io/crates/v/actix-telepathy?label=latest)](https://crates.io/crates/actix-telepathy)
![Tests on main](https://github.com/wenig/actix-telepathy/workflows/Rust/badge.svg)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Dependency Status](https://deps.rs/crate/actix-telepathy/0.5.5/status.svg)](https://deps.rs/crate/actix-telepathy/0.5.5)
[![Dependency Status](https://deps.rs/crate/actix-telepathy/0.5.6/status.svg)](https://deps.rs/crate/actix-telepathy/0.5.6)
![Downloads](https://img.shields.io/crates/d/actix-telepathy.svg)

# Actix Telepathy
Expand Down Expand Up @@ -29,7 +29,7 @@ So far, we only support single seed nodes. Connecting to different seed nodes ca
```toml
[dependencies]
actix = "0.13.1"
actix-telepathy = "0.5.5"
actix-telepathy = "0.5.6"
```

### main.rs
Expand Down
2 changes: 1 addition & 1 deletion actix-telepathy-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix_telepathy_derive"
version = "0.3.3"
version = "0.3.4"
authors = ["wenig <info@pwenig.de>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion actix-telepathy-derive/src/remote_actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn get_message_types_attr(ast: &DeriveInput, ident: &str) -> Result<Vec<Option<s
.iter()
.find_map(|attr| {
if attr.path().is_ident(ident) {
attr.parse_args().ok()
Some(attr.meta.clone())
} else {
None
}
Expand Down

0 comments on commit c9ca7a8

Please sign in to comment.