-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'd like to add optional rustls support for SQLx. This PR implements the required features, but tests using `--all-features` fail, because runtime selection features are not additive. I didn't find a solution apart from avoiding `--all-features`. --------- Co-authored-by: Yuri Astrakhan <[email protected]>
- Loading branch information
Showing
12 changed files
with
224 additions
and
121 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,2 +1,2 @@ | ||
github: [maplibre] | ||
github: [ maplibre ] | ||
open_collective: maplibre |
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,40 +1,40 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "02:00" | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: actix | ||
versions: | ||
- 0.11.0 | ||
- 0.11.1 | ||
- dependency-name: docopt | ||
versions: | ||
- 1.1.1 | ||
- dependency-name: actix-rt | ||
versions: | ||
- 2.0.0 | ||
- 2.0.2 | ||
- 2.1.0 | ||
- 2.2.0 | ||
- dependency-name: postgres | ||
versions: | ||
- 0.19.1 | ||
- dependency-name: serde | ||
versions: | ||
- 1.0.124 | ||
- 1.0.125 | ||
- dependency-name: env_logger | ||
versions: | ||
- 0.8.3 | ||
- dependency-name: criterion | ||
versions: | ||
- 0.3.4 | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "02:00" | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: actix | ||
versions: | ||
- 0.11.0 | ||
- 0.11.1 | ||
- dependency-name: docopt | ||
versions: | ||
- 1.1.1 | ||
- dependency-name: actix-rt | ||
versions: | ||
- 2.0.0 | ||
- 2.0.2 | ||
- 2.1.0 | ||
- 2.2.0 | ||
- dependency-name: postgres | ||
versions: | ||
- 0.19.1 | ||
- dependency-name: serde | ||
versions: | ||
- 1.0.124 | ||
- 1.0.125 | ||
- dependency-name: env_logger | ||
versions: | ||
- 0.8.3 | ||
- dependency-name: criterion | ||
versions: | ||
- 0.3.4 |
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
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
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
Oops, something went wrong.