From d1aeb6c1390fb7d6258b97a6276e887be1998ad5 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 21 May 2019 15:04:06 -0500 Subject: [PATCH] Bump actix --- .gitignore | 1 + Cargo.toml | 4 ++-- examples/server-jobs-example/Cargo.toml | 2 +- jobs-actix/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6936990..22b9211 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target +**/*/target **/*.rs.bk Cargo.lock diff --git a/Cargo.toml b/Cargo.toml index 5ce4444..bca5ead 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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 diff --git a/examples/server-jobs-example/Cargo.toml b/examples/server-jobs-example/Cargo.toml index a76277c..e6da61a 100644 --- a/examples/server-jobs-example/Cargo.toml +++ b/examples/server-jobs-example/Cargo.toml @@ -15,5 +15,5 @@ serde_derive = "1.0" tokio = "0.1" [dependencies.background-jobs] -version = "0.4" +version = "0.5" path = "../.." diff --git a/jobs-actix/Cargo.toml b/jobs-actix/Cargo.toml index 711ab9d..8fd6574 100644 --- a/jobs-actix/Cargo.toml +++ b/jobs-actix/Cargo.toml @@ -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 "] 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"