Bump actix

This commit is contained in:
asonix 2019-05-21 15:04:06 -05:00
parent 94d0fd9a02
commit d1aeb6c139
4 changed files with 6 additions and 5 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/target
**/*/target
**/*.rs.bk
Cargo.lock

View file

@ -1,7 +1,7 @@
[package]
name = "background-jobs"
description = "Background Jobs implemented with tokio and futures"
version = "0.4.1"
version = "0.5.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
@ -33,6 +33,6 @@ default-features = false
optional = true
[dependencies.background-jobs-actix]
version = "0.4"
version = "0.5"
path = "jobs-actix"
optional = true

View file

@ -15,5 +15,5 @@ serde_derive = "1.0"
tokio = "0.1"
[dependencies.background-jobs]
version = "0.4"
version = "0.5"
path = "../.."

View file

@ -1,7 +1,7 @@
[package]
name = "background-jobs-actix"
description = "in-process jobs processor based on Actix"
version = "0.4.1"
version = "0.5.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
@ -9,7 +9,7 @@ keywords = ["jobs", "processor"]
edition = "2018"
[dependencies]
actix = "0.7"
actix = "0.8"
background-jobs-core = { version = "0.4", path = "../jobs-core" }
chrono = "0.4"
failure = "0.1"