mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 21:21:00 +00:00
Update
This commit is contained in:
parent
a7ca2b06b5
commit
f42452582e
4 changed files with 238 additions and 234 deletions
6
.github/workflows/general.yml
vendored
6
.github/workflows/general.yml
vendored
|
@ -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
|
||||
|
|
462
Cargo.lock
generated
462
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue