Update all dependencies
This commit is contained in:
parent
8c18ad8e2b
commit
61aff908c6
623
Cargo.lock
generated
623
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
20
Cargo.toml
20
Cargo.toml
@ -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"] }
|
||||||
|
@ -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"] }
|
||||||
|
@ -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"
|
||||||
|
@ -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"] }
|
||||||
|
@ -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"] }
|
||||||
|
@ -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"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user