Bump KV dep

This commit is contained in:
asonix 2018-11-19 20:38:45 -06:00
parent 2438fbcdaf
commit 8a78f9e129
3 changed files with 4 additions and 4 deletions

View file

@ -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 <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"

View file

@ -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 <asonix@asonix.dog>"]
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"

View file

@ -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"