95 |
#[logfn(Debug)]
|
96 |
#[allow(clippy::manual_strip)]
|
97 |
fn replace_tilde_with_home_dir(path: &str) -> String {
|
30 |
#[allow(clippy::manual_strip)]
|
31 |
fn main() {
|
85 |
/// `strip_prefix` inconvenient.)
|
86 |
#[allow(clippy::manual_strip)]
|
87 |
pub(crate) fn csv_stream_name<'a>(
|
55 |
#[allow(clippy::manual_strip)]
|
56 |
fn run(config: Config, sender: channel::Sender<Request>) -> ServerHandle {
|
182 |
/// testing.
|
183 |
#[allow(clippy::manual_strip)] // Relies on str::strip_prefix(), MSRV 1.45
|
184 |
fn clean_omitted_line(line: &str) -> &str {
|
559 |
impl MaxentChunker {
|
560 |
#[allow(clippy::manual_strip)]
|
561 |
fn valid(&self, _input: &[(&str, &str)], outcomes: &[&str], _i: usize, outcome: &str) -> bool {
|
162 |
/// version string of OpenSSL.
|
163 |
#[allow(clippy::manual_strip)] // we need to support pre-1.45.0
|
164 |
fn validate_headers(include_dirs: &[PathBuf]) -> Version {
|
239 |
/// with an empty module name.
|
240 |
#[allow(clippy::manual_strip)] // str::strip_suffix not in 1.44
|
241 |
pub fn parent(&self) -> Option<Self> {
|
313 |
/// to [`other.join`][Rsync::join] to receive a URI that is equal to self.
|
314 |
#[allow(clippy::manual_strip)] // str::strip_suffix not in 1.44
|
315 |
pub fn relative_to(&self, other: &Rsync) -> Option<&str> {
|
627 |
/// with an empty module name.
|
628 |
#[allow(clippy::manual_strip)] // str::strip_suffix not in 1.44
|
629 |
pub fn parent(&self) -> Option<Self> {
|
163 |
#[allow(clippy::manual_strip)]
|
164 |
fn ci_branch_tag(&mut self, std_env: &BTreeMap<String, String>) {
|
409 |
/// testing.
|
410 |
#[allow(clippy::manual_strip)] // Relies on str::strip_prefix(), MSRV 1.45
|
411 |
fn clean_omitted_line(line: &str) -> &str {
|
32 |
/// Keep any result entries which occurred before the starting round.
|
33 |
#[allow(clippy::manual_strip)]
|
34 |
pub fn new(
|
35 |
// year-week-day
|
36 |
#[allow(clippy::manual_strip)]
|
37 |
let (year, ordinal) = if input.peek(Ident) {
|
156 |
/// a `TokenStream` that collects the bound variables (e.g., `(_0, _1)`).
|
157 |
#[allow(clippy::manual_strip)] // `strip_prefix` is only available in Rust ≥ 1.45
|
158 |
fn check_tuple_captures(idents: &[&PatIdent]) -> Option<proc_macro2::TokenStream> {
|
69 |
// it seems confused as to what this is actually doing.
|
70 |
#[allow(clippy::manual_strip)]
|
71 |
let string = if string.starts_with('-') {
|
24 |
impl AltrootFS {
|
25 |
#[allow(clippy::manual_strip)] // strip prefix manually for MSRV 1.32
|
26 |
fn path(&self, path: &str) -> VfsResult<VfsPath> {
|
237 |
#[allow(clippy::manual_strip)]
|
238 |
let name_end_idx = if i.starts_with('@') {
|
5 |
clippy::manual_assert,
|
6 |
clippy::manual_strip,
|
7 |
clippy::match_like_matches_macro,
|
19 |
clippy::match_like_matches_macro,
|
20 |
clippy::manual_strip,
|
21 |
clippy::if_same_then_else,
|
25 |
clippy::missing_safety_doc,
|
26 |
clippy::manual_strip,
|
27 |
clippy::match_like_matches_macro
|
223 |
clippy::cast_possible_truncation,
|
224 |
clippy::manual_strip,
|
225 |
clippy::missing_errors_doc,
|
237 |
// These lints suggest to use features not available in our MSRV.
|
238 |
#![allow(clippy::manual_strip, clippy::match_like_matches_macro)]
|
241 |
// These lints suggest to use features not available in our MSRV.
|
242 |
#![allow(clippy::manual_strip, clippy::match_like_matches_macro)]
|
1 |
#![allow(clippy::manual_strip)]
|
2 |
#[allow(unused_imports)]
|
149 |
clippy::doc_markdown,
|
150 |
clippy::manual_strip,
|
151 |
clippy::module_name_repetitions,
|
2 |
// The suggested fix with `strip_prefix` removes support for Rust 1.33 and 1.38
|
3 |
#![allow(clippy::manual_strip)]
|
240 |
#![allow(
|
241 |
clippy::manual_strip,
|
242 |
clippy::match_like_matches_macro,
|
124 |
#![forbid(unsafe_code, missing_docs)]
|
125 |
#![allow(clippy::manual_strip)] // Until MSR is 1.45.0
|
37 |
// slice::strip_suffix added in 1.51
|
38 |
clippy::manual_strip,
|
39 |
)]
|
7 |
// Maintains semver compatibility for older Rust versions
|
8 |
#![allow(clippy::manual_strip)]
|
1 |
//! Shared primitive types for use in SVD objects.
|
2 |
#![allow(clippy::manual_strip)]
|
3 |
#![allow(clippy::manual_strip)]
|