From 2c8fd383485975733b0418ff95fa46f76be3bba0 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 3 Dec 2021 16:50:57 +0800 Subject: [PATCH 1/3] For some reason the `axum_example` fail to compile --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 9a95fba0..c0168f97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,3 +91,4 @@ runtime-actix-rustls = ["sqlx/runtime-actix-rustls", "runtime-actix"] runtime-tokio = [] runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "runtime-tokio"] runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls", "runtime-tokio"] + From bf499ededd24708a86b23efc0d7231fd327c398e Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 3 Dec 2021 18:10:00 +0800 Subject: [PATCH 2/3] Revert --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c0168f97..9a95fba0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,4 +91,3 @@ runtime-actix-rustls = ["sqlx/runtime-actix-rustls", "runtime-actix"] runtime-tokio = [] runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "runtime-tokio"] runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls", "runtime-tokio"] - From d3acf4b156f1ef542b323b4657501f3a68562b33 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 3 Dec 2021 18:10:26 +0800 Subject: [PATCH 3/3] Update `tower-cookies` dependency --- examples/axum_example/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/axum_example/Cargo.toml b/examples/axum_example/Cargo.toml index 5b8b6b4d..1a3336e2 100644 --- a/examples/axum_example/Cargo.toml +++ b/examples/axum_example/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.5", features = ["full"] } axum = { version = "0.3.0" } tower = "0.4.10" tower-http = { version = "0.1", features = ["fs"] } -tower-cookies = { git = "https://github.com/imbolc/tower-cookies" } +tower-cookies = { version = "0.3" } anyhow = "1" dotenv = "0.15" env_logger = "0.9"