Update deps

This commit is contained in:
Luca Palmieri 2022-10-01 14:28:12 +01:00
parent a855e9d8ba
commit 5779cb1f29
4 changed files with 248 additions and 255 deletions

View file

@ -29,7 +29,7 @@ jobs:
ports:
- 5432:5432
env:
SQLX_VERSION: 0.5.5
SQLX_VERSION: 0.6.2
SQLX_FEATURES: postgres
steps:
- name: Checkout repository
@ -109,7 +109,7 @@ jobs:
ports:
- 5432:5432
env:
SQLX_VERSION: 0.5.5
SQLX_VERSION: 0.6.2
SQLX_FEATURES: postgres
steps:
- name: Checkout repository
@ -167,7 +167,7 @@ jobs:
ports:
- 5432:5432
env:
SQLX_VERSION: 0.5.5
SQLX_VERSION: 0.6.2
SQLX_FEATURES: postgres
steps:
- name: Checkout repository

493
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
# Zero To Production In Rust
<div align="center"><a href="https://zero2prod.com" target="_blank"><img src="https://www.zero2prod.com/assets/img/zero2prod_banner.webp" /></a></div>
<div align="center"><a href="https://zero2prod.com" target="_blank"><img src="https://www.zero2prod.com/assets/img/zero2prod.png" width="75%" /></a></div>
[Zero To Production In Rust](https://zero2prod.com) is an opinionated introduction to backend development using Rust.

View file

@ -10,7 +10,7 @@ fi
if ! [ -x "$(command -v sqlx)" ]; then
echo >&2 "Error: sqlx is not installed."
echo >&2 "Use:"
echo >&2 " cargo install --version=0.6.0 sqlx-cli --no-default-features --features postgres"
echo >&2 " cargo install --version='~0.6' sqlx-cli --no-default-features --features rustls,postgres"
echo >&2 "to install it."
exit 1
fi