• calc 0.4.0/src/types/i64.rs
    32
            // usage preserves the pattern.
    33
            #[allow(clippy::from_str_radix_10)]
    34
            i64::from_str_radix(&clean_input(s, "0d"), 10).map_err(Error::Parse)
  • calc 0.4.0/src/types/u64.rs
    30
            // usage preserves the pattern.
    31
            #[allow(clippy::from_str_radix_10)]
    32
            u64::from_str_radix(&clean_input(s, "0d"), 10).map_err(Error::Parse)
  • calyx 0.1.1/src/frontend/parser.rs
    117
        fn decimal(input: Node) -> ParseResult<u64> {
    118
            #[allow(clippy::from_str_radix_10)]
    119
            u64::from_str_radix(input.as_str(), 10)
  • ethnum 1.3.2/src/error.rs
    24
        #[test]
    25
        #[allow(clippy::from_str_radix_10)]
    26
        fn parse_int_error() {
  • htmlize 0.5.1/src/unescape.rs
    42
    #[allow(clippy::from_str_radix_10)]
    43
    fn match_numeric_entity<'a, I>(iter: &mut Peekable<I>) -> Vec<u8>
  • kb-remap 0.2.1/src/hex.rs
    16
    #[allow(clippy::from_str_radix_10)]
    17
    pub fn parse(s: &str) -> Result<u64> {
  • markdown-it 0.4.0/src/common/utils.rs
    66
    #[allow(clippy::from_str_radix_10)]
    67
    fn replace_entity_pattern(str: &str) -> Option<String> {
  • markdown-it 0.4.0/src/plugins/cmark/inline/entity.rs
    31
            let entity = &capture[1];
    32
            #[allow(clippy::from_str_radix_10)]
    33
            let code = if entity.starts_with('x') || entity.starts_with('X') {
  • ntfs 0.3.0/examples/ntfs-shell/main.rs
    626
    #[allow(clippy::from_str_radix_10)]
    627
    fn parse_file_arg<'n, T>(arg: &str, info: &mut CommandInfo<'n, T>) -> Result<NtfsFile<'n>>
  • r-u-still-there 0.3.0/src/util/mod.rs
    17
    /// Otherwise the string is treated as a decimal integer.
    18
    #[allow(clippy::from_str_radix_10)]
    19
    pub fn parse_int_decimal_hex<U: Num>(num_str: &str) -> Result<U, <U as Num>::FromStrRadixErr> {
  • shellcaster 2.0.1/src/ui/colors.rs
    112
            } else if text.starts_with("rgb") || text.starts_with("RGB") {
    113
                #[allow(clippy::from_str_radix_10)]
    114
                if let Some(cap) = RE_COLOR_RGB.captures(text) {
  • gptman 1.0.0/src/cli/main.rs
    1
    #![allow(clippy::from_str_radix_10)]
  • mblf 0.1.0/src/main.rs
    1
    #![allow(clippy::from_str_radix_10)]
    2
    use std::cmp::Ordering;
  • phosphorus 2.0.3/src/bin/phosphorus.rs
    1
    #![allow(clippy::from_str_radix_10)]
    2
    #![allow(clippy::field_reassign_with_default)]
  • procfs 0.14.2/src/lib.rs
    2
    // The suggested fix with `str::parse` removes support for Rust 1.48
    3
    #![allow(clippy::from_str_radix_10)]
    4
    #![deny(broken_intra_doc_links)]
  • retina 0.4.4/src/lib.rs
    10
    // I prefer to use from_str_radix(..., 10) to explicitly note the base.
    11
    #![allow(clippy::from_str_radix_10)]
  • rink-core 0.6.2/src/lib.rs
    34
    #![allow(clippy::match_like_matches_macro)]
    35
    #![allow(clippy::from_str_radix_10)]
    36
    #![allow(clippy::option_as_ref_deref)]