Skip to content

Commit 7749dfe

Browse files
committed
address msrv todo in router
1 parent aeb81ad commit 7749dfe

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

actix-codec/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! [`Sink`]: futures_sink::Sink
88
//! [`Stream`]: futures_core::Stream
99
10-
#![deny(rust_2018_idioms, nonstandard_style)]
10+
#![deny(rust_2018_idioms, nonstandard_style, future_incompatible)]
1111
#![warn(missing_docs)]
1212
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
1313
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]

actix-router/src/resource.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -581,10 +581,7 @@ impl ResourceDef {
581581
mut for_prefix: bool,
582582
) -> (String, Vec<PatternElement>, bool, usize) {
583583
if pattern.find('{').is_none() {
584-
// TODO: MSRV: 1.45
585-
#[allow(clippy::manual_strip)]
586-
return if pattern.ends_with('*') {
587-
let path = &pattern[..pattern.len() - 1];
584+
return if let Some(path) = pattern.strip_suffix('*') {
588585
let re = String::from("^") + path + "(.*)";
589586
(re, vec![PatternElement::Str(String::from(path))], true, 0)
590587
} else {

actix-service/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! See [`Service`] docs for information on this crate's foundational trait.
22
33
#![no_std]
4-
#![deny(rust_2018_idioms, nonstandard_style)]
4+
#![deny(rust_2018_idioms, nonstandard_style, future_incompatible)]
55
#![warn(missing_docs)]
66
#![allow(clippy::type_complexity)]
77
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]

actix-tls/src/connect/resolve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub enum Resolver {
5656
/// An interface for custom async DNS resolvers.
5757
///
5858
/// # Usage
59-
/// ```rust
59+
/// ```
6060
/// use std::net::SocketAddr;
6161
///
6262
/// use actix_tls::connect::{Resolve, Resolver};

0 commit comments

Comments
 (0)