diff --git a/Cargo.lock b/Cargo.lock index a8f47c4b..ace73502 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -585,6 +585,45 @@ dependencies = [ "tracing", ] +[[package]] +name = "actix-web-lab" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e685bb63b29ddb0d5fe646d799a7fc7661876d4fed91c0a07eb2b6e6dbed95ba" +dependencies = [ + "actix-files", + "actix-http", + "actix-router", + "actix-service", + "actix-utils", + "actix-web", + "actix-web-lab-derive", + "ahash 0.7.6", + "arc-swap", + "async-trait", + "bytes 1.2.1", + "bytestring", + "csv", + "derive_more", + "digest 0.10.3", + "futures-core", + "futures-util", + "generic-array", + "hmac", + "http", + "local-channel", + "mime", + "once_cell", + "pin-project-lite 0.2.9", + "regex", + "serde", + "serde_html_form", + "serde_json", + "subtle", + "tokio 1.20.1", + "tracing", +] + [[package]] name = "actix-web-lab-derive" version = "0.16.0" @@ -907,7 +946,7 @@ dependencies = [ "actix 0.13.0", "actix-cors", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "async-graphql", "async-graphql-actix-web", "env_logger 0.9.0", @@ -3523,7 +3562,7 @@ version = "1.0.0" dependencies = [ "actix-cors", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "dotenv", "env_logger 0.9.0", "juniper", @@ -3542,7 +3581,7 @@ version = "1.0.0" dependencies = [ "actix-cors", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "env_logger 0.9.0", "juniper", "log", @@ -3806,7 +3845,7 @@ name = "middleware-http-to-https" version = "1.0.0" dependencies = [ "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "env_logger 0.9.0", "futures-util", "log", @@ -3978,7 +4017,7 @@ version = "1.0.0" dependencies = [ "actix-multipart", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "aws-config", "aws-sdk-s3", "dotenv", @@ -5335,7 +5374,7 @@ version = "1.0.0" dependencies = [ "actix-files", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "env_logger 0.9.0", "log", "rustls 0.20.6", @@ -5629,7 +5668,7 @@ name = "server-sent-events" version = "1.0.0" dependencies = [ "actix-web", - "actix-web-lab", + "actix-web-lab 0.16.9", "env_logger 0.9.0", "futures-util", "log", @@ -5710,7 +5749,7 @@ name = "shutdown-server" version = "1.0.0" dependencies = [ "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "env_logger 0.9.0", "log", "parking_lot 0.12.1", @@ -6176,7 +6215,7 @@ name = "templating-fluent" version = "1.0.0" dependencies = [ "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "fluent-templates", "handlebars", "serde", @@ -6197,7 +6236,7 @@ name = "templating-sailfish" version = "0.1.0" dependencies = [ "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "env_logger 0.9.0", "log", "sailfish", @@ -6424,7 +6463,7 @@ dependencies = [ "actix-files", "actix-session 0.7.1", "actix-web", - "actix-web-lab", + "actix-web-lab 0.17.0", "dotenv", "env_logger 0.9.0", "log", diff --git a/basics/todo/Cargo.toml b/basics/todo/Cargo.toml index 2fffe9d3..ecef9bad 100644 --- a/basics/todo/Cargo.toml +++ b/basics/todo/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" actix-files = "0.6" actix-session = { version = "0.7", features = ["cookie-session"] } actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" dotenv = "0.15" env_logger = "0.9" diff --git a/forms/multipart-s3/Cargo.toml b/forms/multipart-s3/Cargo.toml index de5e9aca..dd33e4a5 100644 --- a/forms/multipart-s3/Cargo.toml +++ b/forms/multipart-s3/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] actix-multipart = "0.4" actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" aws-config = "0.46" aws-sdk-s3 = "0.16" diff --git a/graphql/async-graphql/Cargo.toml b/graphql/async-graphql/Cargo.toml index d3167541..9038970a 100644 --- a/graphql/async-graphql/Cargo.toml +++ b/graphql/async-graphql/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] actix = "0.13" actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" actix-cors = "0.6" async-graphql = "4" diff --git a/graphql/juniper-advanced/Cargo.toml b/graphql/juniper-advanced/Cargo.toml index 99740679..76d03086 100644 --- a/graphql/juniper-advanced/Cargo.toml +++ b/graphql/juniper-advanced/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" actix-cors = "0.6" juniper = "0.15" diff --git a/graphql/juniper/Cargo.toml b/graphql/juniper/Cargo.toml index 2e913972..26ab172c 100644 --- a/graphql/juniper/Cargo.toml +++ b/graphql/juniper/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" actix-cors = "0.6" juniper = "0.15" diff --git a/https-tls/rustls/Cargo.toml b/https-tls/rustls/Cargo.toml index a3430b17..39c66bfc 100644 --- a/https-tls/rustls/Cargo.toml +++ b/https-tls/rustls/Cargo.toml @@ -9,7 +9,7 @@ path = "src/main.rs" [dependencies] actix-web = { version = "4", features = ["rustls"] } -actix-web-lab = "0.16" +actix-web-lab = "0.17" actix-files = "0.6" env_logger = "0.9" diff --git a/middleware/middleware-http-to-https/Cargo.toml b/middleware/middleware-http-to-https/Cargo.toml index 84442371..19ecd075 100644 --- a/middleware/middleware-http-to-https/Cargo.toml +++ b/middleware/middleware-http-to-https/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-web = { version = "4", features = ["rustls"] } -actix-web-lab = "0.16" +actix-web-lab = "0.17" env_logger = "0.9" futures-util = { version = "0.3.17", default-features = false, features = ["std"] } diff --git a/shutdown-server/Cargo.toml b/shutdown-server/Cargo.toml index 1aaab23c..e74f276f 100644 --- a/shutdown-server/Cargo.toml +++ b/shutdown-server/Cargo.toml @@ -6,7 +6,7 @@ description = "Send a request to the server to shut it down" [dependencies] actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" env_logger = "0.9" log = "0.4" diff --git a/templating/fluent/Cargo.toml b/templating/fluent/Cargo.toml index e597c2fe..fa4739a7 100644 --- a/templating/fluent/Cargo.toml +++ b/templating/fluent/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" fluent-templates = { version = "0.7", features = ["handlebars"] } handlebars = { version = "4.3", features = ["dir_source"] } serde = { version = "1", features = ["derive"] } diff --git a/templating/sailfish/Cargo.toml b/templating/sailfish/Cargo.toml index 568fa4e8..32eb93a4 100644 --- a/templating/sailfish/Cargo.toml +++ b/templating/sailfish/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-web = "4" -actix-web-lab = "0.16" +actix-web-lab = "0.17" env_logger = "0.9" log = "0.4"