Skip to content

Commit

Permalink
Merge pull request #3 from jmagnuson/actix-10
Browse files Browse the repository at this point in the history
deps: update actix 0.9.0 -> 0.10.0
  • Loading branch information
Diggsey committed Sep 30, 2020
2 parents cdc845b + 4bfdfb6 commit a9a3bf5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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-interop"
version = "0.1.1"
version = "0.2.0"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -13,7 +13,7 @@ keywords = ["actix", "async", "await", "context", "atomic"]
categories = ["asynchronous"]

[dependencies]
actix = "0.9.0"
actix = "0.10.0"
scoped-tls-hkt = "0.1.2"
pin-project = "0.4.21"
futures = "0.3.4"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ convenient way to control access to an actor's state.
```toml
# Cargo.toml
[dependencies]
actix-interop = "0.1"
actix-interop = "0.2"
```

# Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ pub trait FutureInterop<A: Actor>: Future + Sized {
where
Self: 'static,
{
Box::new(self.interop_actor(actor))
Box::pin(self.interop_actor(actor))
}
}

Expand Down

0 comments on commit a9a3bf5

Please sign in to comment.