From c6af835c8063d719e5b7a6833ae25d54b5a9d168 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Wed, 26 Oct 2022 06:42:12 +0000 Subject: [PATCH] Update Rust crate axum to 0.5.17 --- Cargo.lock | 10 ++++++---- como_api/Cargo.toml | 2 +- como_bin/Cargo.toml | 2 +- como_core/Cargo.toml | 2 +- como_gql/Cargo.toml | 2 +- como_infrastructure/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 427de5d..2c052e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,9 +349,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.15" +version = "0.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9de18bc5f2e9df8f52da03856bf40e29b747de5a84e43aefff90e3dc4a21529b" +checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" dependencies = [ "async-trait", "axum-core", @@ -384,9 +384,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4f44a0e6200e9d11a1cdc989e4b358f6e3d354fbf48478f345a17f4e43f8635" +checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc" dependencies = [ "async-trait", "bytes", @@ -394,6 +394,8 @@ dependencies = [ "http", "http-body", "mime", + "tower-layer", + "tower-service", ] [[package]] diff --git a/como_api/Cargo.toml b/como_api/Cargo.toml index 78fde40..30bef8a 100644 --- a/como_api/Cargo.toml +++ b/como_api/Cargo.toml @@ -13,7 +13,7 @@ como_infrastructure = { path = "../como_infrastructure" } async-graphql = "4.0.6" async-graphql-axum = "*" -axum = "0.5.13" +axum = "0.5.17" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-sessions = { version = "*" } serde = { version = "1.0", features = ["derive"] } diff --git a/como_bin/Cargo.toml b/como_bin/Cargo.toml index 148e1b8..eef7823 100644 --- a/como_bin/Cargo.toml +++ b/como_bin/Cargo.toml @@ -14,7 +14,7 @@ como_api = { path = "../como_api" } async-graphql = "4.0.6" async-graphql-axum = "*" -axum = "0.5.13" +axum = "0.5.17" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-sessions = { version = "*" } serde = { version = "1.0", features = ["derive"] } diff --git a/como_core/Cargo.toml b/como_core/Cargo.toml index 63d202a..152f9dd 100644 --- a/como_core/Cargo.toml +++ b/como_core/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] como_domain = { path = "../como_domain" } tokio = { version = "1", features = ["full"] } -axum = "0.5.1" +axum = "0.5.17" # utilty crates serde = { version = "1.0.136", features = ["derive"] } diff --git a/como_gql/Cargo.toml b/como_gql/Cargo.toml index e4f8f16..0c411d2 100644 --- a/como_gql/Cargo.toml +++ b/como_gql/Cargo.toml @@ -12,7 +12,7 @@ como_infrastructure = { path = "../como_infrastructure" } async-graphql = "4.0.6" async-graphql-axum = "*" -axum = "0.5.13" +axum = "0.5.17" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-sessions = { version = "*" } serde = { version = "1.0", features = ["derive"] } diff --git a/como_infrastructure/Cargo.toml b/como_infrastructure/Cargo.toml index 7c22b00..edc2c97 100644 --- a/como_infrastructure/Cargo.toml +++ b/como_infrastructure/Cargo.toml @@ -11,7 +11,7 @@ como_domain = { path = "../como_domain" } async-graphql = "4.0.6" async-graphql-axum = "*" -axum = "0.5.13" +axum = "0.5.17" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } axum-sessions = { version = "*" } serde = { version = "1.0", features = ["derive"] }