diff --git a/Cargo.toml b/Cargo.toml index 573706c..3a197a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs" description = "Background Jobs implemented with actix and futures" -version = "0.8.0-alpha.3" +version = "0.8.0" license-file = "LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -21,10 +21,10 @@ members = [ default = ["background-jobs-actix"] [dependencies.background-jobs-core] -version = "0.8.0-alpha.3" +version = "0.8.0" path = "jobs-core" [dependencies.background-jobs-actix] -version = "0.8.0-alpha.3" +version = "0.8.0" path = "jobs-actix" optional = true diff --git a/examples/actix-example/Cargo.toml b/examples/actix-example/Cargo.toml index 68d723e..42b4c66 100644 --- a/examples/actix-example/Cargo.toml +++ b/examples/actix-example/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" actix-rt = "1.0.0" anyhow = "1.0" async-trait = "0.1.24" -background-jobs = { version = "0.8.0-alpha.1", path = "../.." } +background-jobs = { version = "0.8.0", path = "../.." } env_logger = "0.7" futures = "0.3" serde = { version = "1.0", features = ["derive"] } diff --git a/jobs-actix/Cargo.toml b/jobs-actix/Cargo.toml index f1aef37..16f57be 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.8.0-alpha.3" +version = "0.8.0" license-file = "../LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -10,11 +10,11 @@ readme = "../README.md" edition = "2018" [dependencies] -actix-rt = "1.1.0" +actix-rt = "1.1.1" anyhow = "1.0" async-mutex = "1.0.1" async-trait = "0.1.24" -background-jobs-core = { version = "0.8.0-alpha.3", path = "../jobs-core", features = ["with-actix"] } +background-jobs-core = { version = "0.8.0", path = "../jobs-core", features = ["with-actix"] } chrono = "0.4" log = "0.4" num_cpus = "1.10.0" @@ -22,5 +22,5 @@ rand = "0.7.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" -tokio = { version = "0.2.13", features = ["sync"] } +tokio = { version = "0.2.22", default-features = false, features = ["sync"] } uuid = { version ="0.8.1", features = ["v4", "serde"] } diff --git a/jobs-core/Cargo.toml b/jobs-core/Cargo.toml index e45a6c5..8b50eb5 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" -version = "0.8.0-alpha.3" +version = "0.8.0" license-file = "../LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -14,7 +14,7 @@ default = [] with-actix = ["actix-rt", "tokio"] [dependencies] -actix-rt = { version = "1.1.0", optional = true } +actix-rt = { version = "1.1.1", optional = true } anyhow = "1.0" async-mutex = "1.0.1" async-trait = "0.1.24" @@ -23,7 +23,7 @@ log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" -tokio = { version = "0.2.13", optional = true } +tokio = { version = "0.2.22", optional = true, default-features = false, features = ["sync"] } uuid = { version = "0.8.1", features = ["serde", "v4"] } [dev-dependencies]