• alepc 0.3.1/src/utils/mod.rs
    95
    #[logfn(Debug)]
    96
    #[allow(clippy::manual_strip)]
    97
    fn replace_tilde_with_home_dir(path: &str) -> String {
  • ckb 0.107.0/build.rs
    30
    #[allow(clippy::manual_strip)]
    31
    fn main() {
  • dbcrossbarlib 0.5.2/src/csv_stream.rs
    85
    /// `strip_prefix` inconvenient.)
    86
    #[allow(clippy::manual_strip)]
    87
    pub(crate) fn csv_stream_name<'a>(
  • ibc-relayer-rest 0.21.0/src/server.rs
    55
    #[allow(clippy::manual_strip)]
    56
    fn run(config: Config, sender: channel::Sender<Request>) -> ServerHandle {
  • mdbook-keeper 0.2.0/src/skeptic.rs
    182
    /// testing.
    183
    #[allow(clippy::manual_strip)] // Relies on str::strip_prefix(), MSRV 1.45
    184
    fn clean_omitted_line(line: &str) -> &str {
  • nlprule 0.6.4/src/tokenizer/chunk.rs
    559
    impl MaxentChunker {
    560
        #[allow(clippy::manual_strip)]
    561
        fn valid(&self, _input: &[(&str, &str)], outcomes: &[&str], _i: usize, outcome: &str) -> bool {
  • openssl-sys 0.9.80/build/main.rs
    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 {
  • rpki 0.15.9/src/uri.rs
    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> {
  • shadow-rs 0.20.0/src/git.rs
    163
        #[allow(clippy::manual_strip)]
    164
        fn ci_branch_tag(&mut self, std_env: &BTreeMap<String, String>) {
  • skeptic 0.13.7/src/lib.rs
    409
    /// testing.
    410
    #[allow(clippy::manual_strip)] // Relies on str::strip_prefix(), MSRV 1.45
    411
    fn clean_omitted_line(line: &str) -> &str {
  • solana-ramp-tps 1.6.28/src/results.rs
    32
        /// Keep any result entries which occurred before the starting round.
    33
        #[allow(clippy::manual_strip)]
    34
        pub fn new(
  • time-macros-impl 0.1.2/src/date.rs
    35
            // year-week-day
    36
            #[allow(clippy::manual_strip)]
    37
            let (year, ordinal) = if input.peek(Ident) {
  • try_match_inner 0.4.0/src/lib.rs
    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> {
  • uniffi_bindgen 0.23.0/src/interface/literal.rs
    69
            // it seems confused as to what this is actually doing.
    70
            #[allow(clippy::manual_strip)]
    71
            let string = if string.starts_with('-') {
  • vfs 0.9.0/src/impls/altroot.rs
    24
    impl AltrootFS {
    25
        #[allow(clippy::manual_strip)] // strip prefix manually for MSRV 1.32
    26
        fn path(&self, path: &str) -> VfsResult<VfsPath> {
  • yarn-lock-parser 0.4.1/src/lib.rs
    237
            #[allow(clippy::manual_strip)]
    238
            let name_end_idx = if i.starts_with('@') {
  • cargo-expand 1.0.40/src/main.rs
    5
        clippy::manual_assert,
    6
        clippy::manual_strip,
    7
        clippy::match_like_matches_macro,
  • choir 0.5.0/src/lib.rs
    19
        clippy::match_like_matches_macro,
    20
        clippy::manual_strip,
    21
        clippy::if_same_then_else,
  • cpython 0.7.1/src/lib.rs
    25
        clippy::missing_safety_doc,
    26
        clippy::manual_strip,
    27
        clippy::match_like_matches_macro
  • gflags 0.3.12/src/lib.rs
    223
        clippy::cast_possible_truncation,
    224
        clippy::manual_strip,
    225
        clippy::missing_errors_doc,
  • isahc 1.7.2/src/lib.rs
    237
    // These lints suggest to use features not available in our MSRV.
    238
    #![allow(clippy::manual_strip, clippy::match_like_matches_macro)]
  • isahc-opendal-workaround 2.0.0-opendal.1/src/lib.rs
    241
    // These lints suggest to use features not available in our MSRV.
    242
    #![allow(clippy::manual_strip, clippy::match_like_matches_macro)]
  • naga-cli 0.11.0/src/bin/naga.rs
    1
    #![allow(clippy::manual_strip)]
    2
    #[allow(unused_imports)]
  • proc-macro-hack 0.5.20+deprecated/src/lib.rs
    149
        clippy::doc_markdown,
    150
        clippy::manual_strip,
    151
        clippy::module_name_repetitions,
  • procfs 0.14.2/src/net.rs
    2
    // The suggested fix with `strip_prefix` removes support for Rust 1.33 and 1.38
    3
    #![allow(clippy::manual_strip)]
  • ratmom 0.1.0/src/lib.rs
    240
    #![allow(
    241
        clippy::manual_strip,
    242
        clippy::match_like_matches_macro,
  • ructe 0.16.1/src/lib.rs
    124
    #![forbid(unsafe_code, missing_docs)]
    125
    #![allow(clippy::manual_strip)] // Until MSR is 1.45.0
  • rusty-man 0.5.0/src/main.rs
    37
        // slice::strip_suffix added in 1.51
    38
        clippy::manual_strip,
    39
    )]
  • sqlformat 0.2.1/src/lib.rs
    7
    // Maintains semver compatibility for older Rust versions
    8
    #![allow(clippy::manual_strip)]
  • svd-parser 0.14.1/src/types.rs
    1
    //! Shared primitive types for use in SVD objects.
    2
    #![allow(clippy::manual_strip)]
  • yubihsm 0.41.0/src/connector/http/client/response/reader.rs
    3
    #![allow(clippy::manual_strip)]