diff --git a/Cargo.toml b/Cargo.toml index 531714a..46182fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs" description = "Background Jobs implemented with sled, actix, and futures" -version = "0.6.1" +version = "0.7.0" license-file = "LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -30,6 +30,6 @@ path = "jobs-actix" optional = true [dependencies.background-jobs-sled-storage] -version = "0.2.0" +version = "0.3.0" path = "jobs-sled" optional = true diff --git a/README.md b/README.md index abcd1a1..4f8d379 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ might not be the best experience. ```toml [dependencies] actix = "0.8" -background-jobs = "0.6.0" +background-jobs = "0.7.0" failure = "0.1" futures = "0.1" serde = "1.0" serde_drive = "1.0" -sled = "0.28" +sled = "0.29" ``` #### To get started with Background Jobs, first you should define a job. diff --git a/examples/actix-example/Cargo.toml b/examples/actix-example/Cargo.toml index fd289ab..9de73e3 100644 --- a/examples/actix-example/Cargo.toml +++ b/examples/actix-example/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" [dependencies] actix = "0.8" -background-jobs = { version = "0.6.0", path = "../.." } +background-jobs = { version = "0.7.0", path = "../.." } failure = "0.1" futures = "0.1" -sled-extensions = "0.1.0" +sled-extensions = "0.2.0" serde = "1.0" serde_derive = "1.0" diff --git a/jobs-sled/Cargo.toml b/jobs-sled/Cargo.toml index 6999c69..f88bbb7 100644 --- a/jobs-sled/Cargo.toml +++ b/jobs-sled/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs-sled-storage" description = "Sled storage backend for background-jobs" -version = "0.2.0" +version = "0.3.0" license-file = "../LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -13,4 +13,4 @@ edition = "2018" [dependencies] background-jobs-core = { version = "0.6", path = "../jobs-core" } chrono = "0.4" -sled-extensions = { version = "0.1", features = ["bincode", "cbor"] } +sled-extensions = { version = "0.2", features = ["bincode", "cbor"] }