-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7417897
commit 1e0fb25
Showing
5 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apalis" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Geoffrey Mureithi <[email protected]>"] | ||
description = "Simple, extensible multithreaded background job processing for Rust" | ||
repository = "https://github.com/geofmureithi/apalis" | ||
|
@@ -66,26 +66,26 @@ docsrs = ["document-features"] | |
|
||
|
||
[dependencies.apalis-redis] | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
optional = true | ||
path = "./packages/apalis-redis" | ||
default-features = false | ||
|
||
[dependencies.apalis-sql] | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
features = ["migrate"] | ||
optional = true | ||
default-features = false | ||
path = "./packages/apalis-sql" | ||
|
||
[dependencies.apalis-core] | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
default-features = false | ||
path = "./packages/apalis-core" | ||
features = ["storage"] | ||
|
||
[dependencies.apalis-cron] | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
optional = true | ||
default-features = false | ||
path = "./packages/apalis-cron" | ||
|
@@ -122,8 +122,8 @@ pprof = { version = "0.12", features = ["flamegraph"] } | |
paste = "1.0.14" | ||
serde = "1" | ||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } | ||
apalis-redis = { version = "0.4.3", path = "./packages/apalis-redis" } | ||
apalis-sql = { version = "0.4.3", path = "./packages/apalis-sql", features = [ | ||
apalis-redis = { version = "0.4.4", path = "./packages/apalis-redis" } | ||
apalis-sql = { version = "0.4.4", path = "./packages/apalis-sql", features = [ | ||
"sqlite", "postgres", "mysql" | ||
] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apalis-core" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apalis-cron" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
edition = "2021" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -9,7 +9,7 @@ description = "A simple yet extensible library for cron-like job scheduling for | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.3", default-features = false } | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.4", default-features = false } | ||
cron = "0.12.0" | ||
futures = "0.3" | ||
tower = { version = "0.4" } | ||
|
@@ -23,7 +23,7 @@ async-std = { version = "1.12.0", optional = true } | |
|
||
[dev-dependencies] | ||
tokio = { version = "1", features = ["macros"] } | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.3", features = [ | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.4", features = [ | ||
"extensions", | ||
"retry", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apalis-redis" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
readme = "../../README.md" | ||
|
@@ -11,7 +11,7 @@ description = "Redis Storage for apalis: use Redis for background jobs and messa | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.3", default-features = false, features = [ | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.4", default-features = false, features = [ | ||
"storage", | ||
] } | ||
redis = { version = "0.23", default-features = false, features = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "apalis-sql" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
readme = "../../README.md" | ||
|
@@ -29,7 +29,7 @@ default-features = false | |
[dependencies] | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.3", features = [ | ||
apalis-core = { path = "../../packages/apalis-core", version = "0.4.4", features = [ | ||
"storage", | ||
], default-features = false } | ||
chrono = { version = "0.4", default-features = false, features = [ | ||
|