Update all dependencies
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Kasper Juul Hermansen 2022-11-15 17:01:41 +00:00
parent 78167f7381
commit 3e9e0469f9
8 changed files with 147 additions and 491 deletions

544
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -21,15 +21,15 @@ como_domain = { path = "como_domain" }
como_infrastructure = { path = "como_infrastructure" } como_infrastructure = { path = "como_infrastructure" }
como_api = { path = "como_api" } como_api = { path = "como_api" }
async-graphql = "4.0.6" async-graphql = "4.0.16"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.13" axum = "0.5.17"
axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "*" } axum-sessions = { version = "*" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.87"
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.21.2", features = ["full"] }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] } uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -37,12 +37,12 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.60" anyhow = "1.0.66"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.36" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.3.4", features = ["full"] }
argon2 = "0.4" argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] } rand_core = { version = "0.6", features = ["std"] }
cookie = { version = "0.16", features = ["secure", "percent-encode"] } cookie = { version = "0.16", features = ["secure", "percent-encode"] }
clap = { version = "3", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }

View File

@ -11,16 +11,16 @@ como_core = { path = "../como_core" }
como_domain = { path = "../como_domain" } como_domain = { path = "../como_domain" }
como_infrastructure = { path = "../como_infrastructure" } como_infrastructure = { path = "../como_infrastructure" }
async-graphql = "4.0.6" async-graphql = "4.0.16"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.13" axum = "0.5.17"
axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "*" } axum-sessions = { version = "*" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.87"
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.21.2", features = ["full"] }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] } uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -28,10 +28,10 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.60" anyhow = "1.0.66"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.36" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
argon2 = "0.4" argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] } rand_core = { version = "0.6", features = ["std"] }
cookie = { version = "0.16", features = ["secure", "percent-encode"] } cookie = { version = "0.16", features = ["secure", "percent-encode"] }

View File

@ -8,24 +8,24 @@ edition = "2021"
[dependencies] [dependencies]
como_domain = { path = "../como_domain" } como_domain = { path = "../como_domain" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
axum = "0.5.1" axum = "0.5.17"
# utilty crates # utilty crates
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.147", features = ["derive"] }
sqlx = { version = "0.5", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
"time", "time",
] } ] }
serde_json = "1.0.81" serde_json = "1.0.87"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
anyhow = "1" anyhow = "1"
validator = { version = "0.15", features = ["derive"] } validator = { version = "0.16", features = ["derive"] }
async-trait = "0.1" async-trait = "0.1"
thiserror = "1" thiserror = "1"
rust-argon2 = "1.0" rust-argon2 = "1.0"
clap = { version = "3", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }
mockall = "0.11.1" mockall = "0.11.3"
time = "0.2" time = "0.3"

View File

@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
async-graphql = { version = "4.0.6", features = ["uuid"] } async-graphql = { version = "4.0.16", features = ["uuid"] }
anyhow = "1.0.60" anyhow = "1.0.66"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.87"
uuid = { version = "1.1.2", features = ["v4", "fast-rng", "serde"] } uuid = { version = "1.2.2", features = ["v4", "fast-rng", "serde"] }

View File

@ -10,15 +10,15 @@ como_core = { path = "../como_core" }
como_domain = { path = "../como_domain" } como_domain = { path = "../como_domain" }
como_infrastructure = { path = "../como_infrastructure" } como_infrastructure = { path = "../como_infrastructure" }
async-graphql = "4.0.6" async-graphql = "4.0.16"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.13" axum = "0.5.17"
axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "*" } axum-sessions = { version = "*" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.87"
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.21.2", features = ["full"] }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] } uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -26,10 +26,10 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.60" anyhow = "1.0.66"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.36" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.3.4", features = ["full"] }
argon2 = "0.4" argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] } rand_core = { version = "0.6", features = ["std"] }

View File

@ -9,15 +9,15 @@ edition = "2021"
como_core = { path = "../como_core" } como_core = { path = "../como_core" }
como_domain = { path = "../como_domain" } como_domain = { path = "../como_domain" }
async-graphql = "4.0.6" async-graphql = "4.0.16"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.13" axum = "0.5.17"
axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "*" } axum-sessions = { version = "*" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.87"
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.21.2", features = ["full"] }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] } uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -25,12 +25,12 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.60" anyhow = "1.0.66"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.36" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.3.4", features = ["full"] }
argon2 = "0.4" argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] } rand_core = { version = "0.6", features = ["std"] }
cookie = { version = "0.16", features = ["secure", "percent-encode"] } cookie = { version = "0.16", features = ["secure", "percent-encode"] }
clap = { version = "3", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }

View File

@ -1,3 +1,3 @@
FROM postgres:14-alpine FROM postgres:15-alpine
COPY *.sh /docker-entrypoint-initdb.d/ COPY *.sh /docker-entrypoint-initdb.d/