mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-21 19:40:59 +00:00
Bump KV dep
This commit is contained in:
parent
2438fbcdaf
commit
8a78f9e129
3 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "background-jobs"
|
name = "background-jobs"
|
||||||
description = "Background Jobs implemented with tokio and futures"
|
description = "Background Jobs implemented with tokio and futures"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
repository = "https://git.asonix.dog/asonix/background-jobs"
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "background-jobs-core"
|
name = "background-jobs-core"
|
||||||
description = "Core types for implementing an asynchronous jobs processor on tokio"
|
description = "Core types for implementing an asynchronous jobs processor on tokio"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
repository = "https://git.asonix.dog/asonix/background-jobs"
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
||||||
|
@ -13,7 +13,7 @@ chrono = { version = "0.4", features = ["serde"] }
|
||||||
failure = "0.1"
|
failure = "0.1"
|
||||||
futures = "0.1.21"
|
futures = "0.1.21"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
kv = { version = "0.6", features = ["json-value"] }
|
kv = { version = "0.7", features = ["json-value"] }
|
||||||
lmdb = "0.8"
|
lmdb = "0.8"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
serde_derive = "1.0"
|
serde_derive = "1.0"
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
//! #### Add Background Jobs to your project
|
//! #### Add Background Jobs to your project
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies]
|
//! [dependencies]
|
||||||
//! background-jobs = "0.2"
|
//! background-jobs = "0.3"
|
||||||
//! failure = "0.1"
|
//! failure = "0.1"
|
||||||
//! futures = "0.1"
|
//! futures = "0.1"
|
||||||
//! tokio = "0.1"
|
//! tokio = "0.1"
|
||||||
|
|
Loading…
Reference in a new issue