From 8a78f9e129dc18e0461ddf3c227e96663db4d8e9 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 19 Nov 2018 20:38:45 -0600 Subject: [PATCH] Bump KV dep --- Cargo.toml | 2 +- jobs-core/Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc0aa88..2a587ba 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.3.0" +version = "0.3.1" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/asonix/background-jobs" diff --git a/jobs-core/Cargo.toml b/jobs-core/Cargo.toml index 1842b0b..36c8ed4 100644 --- a/jobs-core/Cargo.toml +++ b/jobs-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs-core" description = "Core types for implementing an asynchronous jobs processor on tokio" -version = "0.3.0" +version = "0.3.1" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/asonix/background-jobs" @@ -13,7 +13,7 @@ chrono = { version = "0.4", features = ["serde"] } failure = "0.1" futures = "0.1.21" log = "0.4" -kv = { version = "0.6", features = ["json-value"] } +kv = { version = "0.7", features = ["json-value"] } lmdb = "0.8" serde = "1.0" serde_derive = "1.0" diff --git a/src/lib.rs b/src/lib.rs index 753c0e5..324f794 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,7 @@ //! #### Add Background Jobs to your project //! ```toml //! [dependencies] -//! background-jobs = "0.2" +//! background-jobs = "0.3" //! failure = "0.1" //! futures = "0.1" //! tokio = "0.1"