Update all dependencies - autoclosed #17

Closed
kjuulh wants to merge 15 commits from renovate/all into main
7 changed files with 542 additions and 177 deletions
Showing only changes of commit 61aff908c6 - Show all commits

623
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.16" async-graphql = "5.0.9"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.17" axum = "0.6.18"
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.89" serde_json = "1.0.96"
tokio = { version = "1.22.0", features = ["full"] } tokio = { version = "1.28.1", features = ["full"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng"] } uuid = { version = "1.3.3", 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.66" anyhow = "1.0.71"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.4.0", features = ["full"] }
argon2 = "0.4" argon2 = "0.5"
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.17", features = ["secure", "percent-encode"] }
clap = { version = "4", 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.16" async-graphql = "5.0.9"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.17" axum = "0.6.18"
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.89" serde_json = "1.0.96"
tokio = { version = "1.22.0", features = ["full"] } tokio = { version = "1.28.1", features = ["full"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng"] } uuid = { version = "1.3.3", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -28,12 +28,12 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.66" anyhow = "1.0.71"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
argon2 = "0.4" argon2 = "0.5"
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.17", features = ["secure", "percent-encode"] }
tower = { version = "0.4", features = ["timeout"] } tower = { version = "0.4", features = ["timeout"] }
tower-http = { version = "0.3", features = ["trace", "cors"] } tower-http = { version = "0.4", features = ["trace", "cors"] }

View File

@ -8,16 +8,16 @@ 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.17" axum = "0.6.18"
# utilty crates # utilty crates
serde = { version = "1.0.147", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
"time", "time",
] } ] }
serde_json = "1.0.89" serde_json = "1.0.96"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
@ -27,5 +27,5 @@ async-trait = "0.1"
thiserror = "1" thiserror = "1"
rust-argon2 = "1.0" rust-argon2 = "1.0"
clap = { version = "4", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }
mockall = "0.11.3" mockall = "0.11.4"
time = "0.3" 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.16", features = ["uuid"] } async-graphql = { version = "5.0.9", features = ["uuid"] }
anyhow = "1.0.66" anyhow = "1.0.71"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89" serde_json = "1.0.96"
uuid = { version = "1.2.2", features = ["v4", "fast-rng", "serde"] } uuid = { version = "1.3.3", 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.16" async-graphql = "5.0.9"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.17" axum = "0.6.18"
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.89" serde_json = "1.0.96"
tokio = { version = "1.22.0", features = ["full"] } tokio = { version = "1.28.1", features = ["full"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng"] } uuid = { version = "1.3.3", features = ["v4", "fast-rng"] }
sqlx = { version = "0.6", features = [ sqlx = { version = "0.6", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
@ -26,11 +26,11 @@ sqlx = { version = "0.6", features = [
"uuid", "uuid",
"offline", "offline",
] } ] }
anyhow = "1.0.66" anyhow = "1.0.71"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.4.0", features = ["full"] }
argon2 = "0.4" argon2 = "0.5"
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.17", features = ["secure", "percent-encode"] }

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.16" async-graphql = "5.0.9"
async-graphql-axum = "*" async-graphql-axum = "*"
axum = "0.5.17" axum = "0.6.18"
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.89" serde_json = "1.0.96"
tokio = { version = "1.22.0", features = ["full"] } tokio = { version = "1.28.1", features = ["full"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng"] } uuid = { version = "1.3.3", 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.66" anyhow = "1.0.71"
dotenv = "0.15.0" dotenv = "0.15.0"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.4.0", features = ["full"] }
argon2 = "0.4" argon2 = "0.5"
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.17", features = ["secure", "percent-encode"] }
clap = { version = "4", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }