From a68239adaa63b8fc0940af1ec30f4005e13677b4 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 1 Feb 2022 13:35:32 +0000 Subject: [PATCH] bump zstd to 0.10 --- actix-http/Cargo.toml | 2 +- actix-web/Cargo.toml | 2 +- awc/Cargo.toml | 2 +- scripts/ci-test | 20 ++++++++++---------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index b592c98da..d8458b2fc 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -94,7 +94,7 @@ actix-tls = { version = "3.0.0", default-features = false, optional = true } # compress-* brotli = { version = "3.3.3", optional = true } flate2 = { version = "1.0.13", optional = true } -zstd = { version = "0.9", optional = true } +zstd = { version = "0.10", optional = true } [dev-dependencies] actix-http-test = { version = "3.0.0-beta.12", features = ["openssl"] } diff --git a/actix-web/Cargo.toml b/actix-web/Cargo.toml index 92c303b5c..b4908d25b 100644 --- a/actix-web/Cargo.toml +++ b/actix-web/Cargo.toml @@ -117,7 +117,7 @@ serde = { version = "1.0", features = ["derive"] } static_assertions = "1" tls-openssl = { package = "openssl", version = "0.10.9" } tls-rustls = { package = "rustls", version = "0.20.0" } -zstd = "0.9" +zstd = "0.10" [[test]] name = "test_server" diff --git a/awc/Cargo.toml b/awc/Cargo.toml index f2bf7526d..e85eeb37a 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -110,7 +110,7 @@ static_assertions = "1.1" rcgen = "0.8" rustls-pemfile = "0.2" tokio = { version = "1.13.1", features = ["rt-multi-thread", "macros"] } -zstd = "0.9" +zstd = "0.10" [[example]] name = "client" diff --git a/scripts/ci-test b/scripts/ci-test index 8b7e3d12d..bdea1283a 100755 --- a/scripts/ci-test +++ b/scripts/ci-test @@ -13,17 +13,17 @@ save_exit_code() { } save_exit_code cargo test --lib --tests -p=actix-router --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-http --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --nocapture --skip=test_reading_deflate_encoding_large_random_rustls -# save_exit_code cargo test --lib --tests -p=actix-web-codegen --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=awc --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-http-test --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-test --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-files -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-multipart --all-features -- --nocapture -# save_exit_code cargo test --lib --tests -p=actix-web-actors --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-http --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-web-codegen --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=awc --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-http-test --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-test --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-files -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-multipart --all-features -- --nocapture +save_exit_code cargo test --lib --tests -p=actix-web-actors --all-features -- --nocapture -# save_exit_code cargo test --workspace --doc +save_exit_code cargo test --workspace --doc if [ "$EXIT" = "0" ]; then PASSED="All tests passed!"