mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-12-18 14:06:37 +00:00
Update deps
This commit is contained in:
parent
7df7b7ff52
commit
03f5e6f5b5
3 changed files with 338 additions and 343 deletions
6
.github/workflows/general.yml
vendored
6
.github/workflows/general.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
env:
|
env:
|
||||||
SQLX_VERSION: 0.5.7
|
SQLX_VERSION: 0.6.2
|
||||||
SQLX_FEATURES: postgres
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -120,7 +120,7 @@ jobs:
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
env:
|
env:
|
||||||
SQLX_VERSION: 0.5.7
|
SQLX_VERSION: 0.6.2
|
||||||
SQLX_FEATURES: postgres
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -182,7 +182,7 @@ jobs:
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
env:
|
env:
|
||||||
SQLX_VERSION: 0.5.7
|
SQLX_VERSION: 0.6.2
|
||||||
SQLX_FEATURES: postgres
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
673
Cargo.lock
generated
673
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ fi
|
||||||
if ! [ -x "$(command -v sqlx)" ]; then
|
if ! [ -x "$(command -v sqlx)" ]; then
|
||||||
echo >&2 "Error: sqlx is not installed."
|
echo >&2 "Error: sqlx is not installed."
|
||||||
echo >&2 "Use:"
|
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."
|
echo >&2 "to install it."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue