From f72980ed59c47bea4d377abecb99c32b1611f3c8 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 26 Aug 2023 18:41:36 +0100 Subject: [PATCH] ci: pin clap_lex --- .github/workflows/ci.yml | 1 + actix-http/examples/tls_rustls.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f12202017..fdd6f0f9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,7 @@ jobs: if: matrix.version.name != 'stable' run: | cargo update -p=clap --precise=4.3.24 + cargo update -p=clap_lex --precise=0.5.0 - name: check minimal run: cargo ci-check-min diff --git a/actix-http/examples/tls_rustls.rs b/actix-http/examples/tls_rustls.rs index 586d94411..fbb55c6a4 100644 --- a/actix-http/examples/tls_rustls.rs +++ b/actix-http/examples/tls_rustls.rs @@ -16,7 +16,7 @@ extern crate tls_rustls_021 as rustls; use std::io; -use actix_http::{Error, HttpService, Request, Response, Version}; +use actix_http::{Error, HttpService, Request, Response}; use actix_utils::future::ok; #[actix_rt::main]