mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-23 09:11:01 +00:00
Update dependencies
This commit is contained in:
parent
a4dfa64264
commit
c9c355d61f
9 changed files with 1122 additions and 983 deletions
33
.github/workflows/general.yml
vendored
33
.github/workflows/general.yml
vendored
|
@ -14,7 +14,7 @@ on:
|
|||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
SQLX_VERSION: 0.7.1
|
||||
SQLX_VERSION: 0.8.0
|
||||
SQLX_FEATURES: "rustls,postgres"
|
||||
|
||||
jobs:
|
||||
|
@ -23,6 +23,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
services:
|
||||
postgres:
|
||||
# Docker Hub image
|
||||
image: postgres:14
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
|
@ -35,9 +36,20 @@ jobs:
|
|||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
# Downloads a copy of the code in your repository before running CI tests
|
||||
- name: Check out repository code
|
||||
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
|
||||
# This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools).
|
||||
# You should use the checkout action any time your workflow will run against the repository's code.
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
|
||||
- name: Install the Rust toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
||||
# A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.
|
||||
- name: Rust Cache Action
|
||||
uses: Swatinem/rust-cache@v2
|
||||
with:
|
||||
key: sqlx-${{ env.SQLX_VERSION }}
|
||||
- name: Install sqlx-cli
|
||||
|
@ -47,6 +59,11 @@ jobs:
|
|||
--features ${{ env.SQLX_FEATURES }}
|
||||
--no-default-features
|
||||
--locked
|
||||
# The --locked flag can be used to force Cargo to use the packaged Cargo.lock file if it is available.
|
||||
# This may be useful for ensuring reproducible builds, to use the exact same set of dependencies that were available when the package was published.
|
||||
# It may also be useful if a newer version of a dependency is published that no longer builds on your system, or has other problems
|
||||
- name: Install postgresql-client
|
||||
run: sudo apt-get update && sudo apt-get install postgresql-client -y
|
||||
- name: Migrate database
|
||||
run: |
|
||||
sudo apt-get install libpq-dev -y
|
||||
|
@ -89,12 +106,13 @@ jobs:
|
|||
with:
|
||||
key: sqlx-${{ env.SQLX_VERSION }}
|
||||
- name: Install sqlx-cli
|
||||
run:
|
||||
cargo install sqlx-cli
|
||||
run: cargo install sqlx-cli
|
||||
--version=${{ env.SQLX_VERSION }}
|
||||
--features ${{ env.SQLX_FEATURES }}
|
||||
--no-default-features
|
||||
--locked
|
||||
- name: Install postgresql-client
|
||||
run: sudo apt-get update && sudo apt-get install postgresql-client -y
|
||||
- name: Migrate database
|
||||
run: |
|
||||
sudo apt-get install libpq-dev -y
|
||||
|
@ -130,8 +148,7 @@ jobs:
|
|||
- name: Install tarpaulin
|
||||
run: cargo install cargo-tarpaulin
|
||||
- name: Install sqlx-cli
|
||||
run:
|
||||
cargo install sqlx-cli
|
||||
run: cargo install sqlx-cli
|
||||
--version=${{ env.SQLX_VERSION }}
|
||||
--features ${{ env.SQLX_FEATURES }}
|
||||
--no-default-features
|
||||
|
|
1993
Cargo.lock
generated
1993
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
41
Cargo.toml
41
Cargo.toml
|
@ -16,37 +16,48 @@ name = "zero2prod"
|
|||
actix-web = "4"
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||
serde = "1.0.115"
|
||||
config = { version = "0.13", default-features = false, features = ["yaml"] }
|
||||
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "macros", "postgres", "uuid", "chrono", "migrate"] }
|
||||
config = { version = "0.14", default-features = false, features = ["yaml"] }
|
||||
sqlx = { version = "0.8", default-features = false, features = [
|
||||
"runtime-tokio-rustls",
|
||||
"macros",
|
||||
"postgres",
|
||||
"uuid",
|
||||
"chrono",
|
||||
"migrate",
|
||||
] }
|
||||
uuid = { version = "1", features = ["v4", "serde"] }
|
||||
chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
|
||||
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "cookies"] }
|
||||
reqwest = { version = "0.12", default-features = false, features = [
|
||||
"json",
|
||||
"rustls-tls",
|
||||
"cookies",
|
||||
] }
|
||||
log = "0.4"
|
||||
tracing = "0.1.19"
|
||||
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
|
||||
tracing-bunyan-formatter = "0.3"
|
||||
tracing-log = "0.1.1"
|
||||
tracing-bunyan-formatter = "0.3.1"
|
||||
thiserror = "1.0.24"
|
||||
serde-aux = "4"
|
||||
unicode-segmentation = "1.7.1"
|
||||
rand = { version = "0.8", features = ["std_rng"] }
|
||||
anyhow = "1.0.40"
|
||||
base64 = "0.21.0"
|
||||
argon2 = { version = "0.4", features = ["std"] }
|
||||
validator = "0.16"
|
||||
base64 = "0.22.0"
|
||||
argon2 = { version = "0.5", features = ["std"] }
|
||||
validator = "0.18"
|
||||
tracing-log = "0.2.0"
|
||||
tracing-actix-web = "0.7"
|
||||
secrecy = { version = "0.8", features = ["serde"] }
|
||||
actix-web-flash-messages = { version = "0.4", features = ["cookies"] }
|
||||
actix-session = { version = "0.7", features = ["redis-rs-tls-session"] }
|
||||
actix-web-flash-messages = { version = "0.5", features = ["cookies"] }
|
||||
actix-session = { version = "0.10", features = ["redis-session-rustls"] }
|
||||
serde_json = "1"
|
||||
actix-web-lab = "0.18"
|
||||
|
||||
[dev-dependencies]
|
||||
once_cell = "1.7.2"
|
||||
claims = "0.7.0"
|
||||
quickcheck = "0.9.2"
|
||||
quickcheck_macros = "0.9.1"
|
||||
fake = "~2.3.0"
|
||||
wiremock = "0.5"
|
||||
wiremock = "0.6"
|
||||
serde_json = "1.0.61"
|
||||
linkify = "0.9"
|
||||
linkify = "0.10"
|
||||
claims = "0.7"
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
once_cell = "1.7.2"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM lukemathwalker/cargo-chef:latest-rust-1.72.0 as chef
|
||||
FROM lukemathwalker/cargo-chef:latest-rust-1.80.1 as chef
|
||||
WORKDIR /app
|
||||
RUN apt update && apt install lld clang -y
|
||||
|
||||
|
|
|
@ -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.7' sqlx-cli --no-default-features --features rustls,postgres"
|
||||
echo >&2 " cargo install --version='~0.8' sqlx-cli --no-default-features --features rustls,postgres"
|
||||
echo >&2 "to install it."
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -3,8 +3,8 @@ use crate::utils::{e500, see_other};
|
|||
use actix_web::body::MessageBody;
|
||||
use actix_web::dev::{ServiceRequest, ServiceResponse};
|
||||
use actix_web::error::InternalError;
|
||||
use actix_web::middleware::Next;
|
||||
use actix_web::{FromRequest, HttpMessage};
|
||||
use actix_web_lab::middleware::Next;
|
||||
use std::ops::Deref;
|
||||
use uuid::Uuid;
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
use validator::validate_email;
|
||||
use validator::ValidateEmail;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct SubscriberEmail(String);
|
||||
|
||||
impl SubscriberEmail {
|
||||
pub fn parse(s: String) -> Result<SubscriberEmail, String> {
|
||||
if validate_email(&s) {
|
||||
if s.validate_email() {
|
||||
Ok(Self(s))
|
||||
} else {
|
||||
Err(format!("{} is not a valid subscriber email.", s))
|
||||
|
|
|
@ -30,10 +30,10 @@ pub async fn login(
|
|||
username: form.0.username,
|
||||
password: form.0.password,
|
||||
};
|
||||
tracing::Span::current().record("username", &tracing::field::display(&credentials.username));
|
||||
tracing::Span::current().record("username", tracing::field::display(&credentials.username));
|
||||
match validate_credentials(credentials, &pool).await {
|
||||
Ok(user_id) => {
|
||||
tracing::Span::current().record("user_id", &tracing::field::display(&user_id));
|
||||
tracing::Span::current().record("user_id", tracing::field::display(&user_id));
|
||||
session.renew();
|
||||
session
|
||||
.insert_user_id(user_id)
|
||||
|
|
|
@ -9,11 +9,11 @@ use actix_session::storage::RedisSessionStore;
|
|||
use actix_session::SessionMiddleware;
|
||||
use actix_web::cookie::Key;
|
||||
use actix_web::dev::Server;
|
||||
use actix_web::middleware::from_fn;
|
||||
use actix_web::web::Data;
|
||||
use actix_web::{web, App, HttpServer};
|
||||
use actix_web_flash_messages::storage::CookieMessageStore;
|
||||
use actix_web_flash_messages::FlashMessagesFramework;
|
||||
use actix_web_lab::middleware::from_fn;
|
||||
use secrecy::{ExposeSecret, Secret};
|
||||
use sqlx::postgres::PgPoolOptions;
|
||||
use sqlx::PgPool;
|
||||
|
|
Loading…
Reference in a new issue