-
-
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.
fix(deps): update rust crate sqlx to 0.8.0 (#380)
* chore: fix typos (#346) * chore: Add repository to metadata (#345) * fix(deps): update rust crate sqlx to 0.8.0 * fix: sqlite example --------- Co-authored-by: John Vandenberg <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: geofmureithi <[email protected]> Co-authored-by: Geoffrey Mureithi <[email protected]>
- Loading branch information
1 parent
be1674f
commit b790332
Showing
8 changed files
with
19 additions
and
11 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,15 +1,19 @@ | ||
[workspace.package] | ||
edition = "2021" | ||
repository = "https://github.com/geofmureithi/apalis" | ||
|
||
[package] | ||
name = "apalis" | ||
version = "0.6.0-rc.4" | ||
authors = ["Geoffrey Mureithi <[email protected]>"] | ||
description = "Simple, extensible multithreaded background job processing for Rust" | ||
repository = "https://github.com/geofmureithi/apalis" | ||
edition.workspace = true | ||
repository.workspace = true | ||
documentation = "https://docs.rs/apalis" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["job", "task", "scheduler", "worker", "cron"] | ||
categories = ["database"] | ||
edition = "2021" | ||
|
||
[lib] | ||
bench = false | ||
|
@@ -85,7 +89,7 @@ redis = { version = "0.25.3", default-features = false, features = [ | |
] } | ||
|
||
[dev-dependencies.sqlx] | ||
version = "0.7.4" | ||
version = "0.8.0" | ||
default-features = false | ||
features = ["chrono", "mysql", "sqlite", "postgres"] | ||
|
||
|
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
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "apalis-core" | ||
version = "0.6.0-rc.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
repository.workspace = true | ||
license = "MIT" | ||
description = "Core for apalis: simple, extensible multithreaded background processing for Rust" | ||
categories = ["concurrency"] | ||
|
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
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,7 +1,8 @@ | ||
[package] | ||
name = "apalis-cron" | ||
version = "0.6.0-rc.4" | ||
edition = "2021" | ||
edition.workspace = true | ||
repository.workspace = true | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
license = "MIT" | ||
description = "A simple yet extensible library for cron-like job scheduling for rust." | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "apalis-redis" | ||
version = "0.6.0-rc.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
repository.workspace = true | ||
readme = "../../README.md" | ||
|
||
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "apalis-sql" | ||
version = "0.6.0-rc.4" | ||
authors = ["Njuguna Mureithi <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
repository.workspace = true | ||
readme = "../../README.md" | ||
|
||
license = "MIT" | ||
|
@@ -18,7 +19,7 @@ async-std-comp = ["async-std", "sqlx/runtime-async-std-rustls"] | |
tokio-comp = ["tokio", "sqlx/runtime-tokio-rustls"] | ||
|
||
[dependencies.sqlx] | ||
version = "0.7.4" | ||
version = "0.8.0" | ||
default-features = false | ||
features = ["chrono"] | ||
|
||
|
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