• ask-bayes 0.2.1/src/lib.rs
    589
    #[cfg(test)]
    590
    #[allow(clippy::panic_in_result_fn)]
    591
    mod tests {
  • cargo-sonar 0.14.1/src/clippy.rs
    58
    // so this will never panic
    59
    #[allow(clippy::panic_in_result_fn)]
    60
    impl TryFrom<Message> for sonar::Issue {
  • fabruic 0.0.1-dev-1/src/quic/connection/sender.rs
    98
    	// TODO: update Clippy
    99
    	#[allow(clippy::panic_in_result_fn, clippy::unwrap_in_result)]
    100
    	pub(super) fn send_any<A: Serialize>(&self, data: &A) -> Result<()> {
  • fnmatch-regex 0.2.0/src/glob.rs
    493
        /// Handle a dash immediately following a range within a character class.
    494
        #[allow(clippy::panic_in_result_fn)]
    495
        #[allow(clippy::unreachable)]
  • glv 3.0.5/src/main.rs
    104
    #[allow(unused_qualifications)]
    105
    #[allow(clippy::panic_in_result_fn)]
    106
    fn parse_rev_paths<S: AsRef<OsStr> + std::fmt::Debug + std::convert::From<String>>(
  • market_types 0.1.0/src/thread.rs
    98
        #[allow(clippy::panic_in_result_fn)] // Propogate the panic that occurred in call provided by client.
    99
        #[throws(Failure<Self::Flaws>)]
  • mpeg-audio-header 0.0.6/src/frame.rs
    360
        #[allow(clippy::panic_in_result_fn)] // version/layer/mode unreachable!()
    361
        pub(crate) fn try_read<R: Read>(
  • msr-core 0.3.6/src/fs/csv/mod.rs
    95
        // Custom handling and transformation of I/O errors
    96
        #[allow(clippy::panic_in_result_fn)] // unreachable!()
    97
        fn after_record_written(&mut self, res: StdResult<(), ::csv::Error>) -> Result<WriteResult> {
  • msr-core 0.3.6/src/register/recorder/csv.rs
    18
    impl csv::StringRecordDeserializer<StorageRecord> for StorageRecordDeserializer {
    19
        #[allow(clippy::panic_in_result_fn)] // unimplemented!()
    20
        fn deserialize_string_record(
  • msr-core 0.3.6/src/storage/csv.rs
    541
    {
    542
        #[allow(clippy::panic_in_result_fn)] // unreachable!()
    543
        fn recent_records(&mut self, limit: NonZeroUsize) -> Result<Vec<(SystemTime, T)>> {
  • msr-plugin-csv-register-recorder 0.3.6/src/internal/context.rs
    453
        // FIXME: Replace with an integration test
    454
        #[allow(clippy::panic_in_result_fn)] // just a test
    455
        pub(crate) fn smoke_test(&mut self) -> Result<()> {
  • starling 4.0.0/src/merkle_bit.rs
    921
    #[allow(clippy::panic_in_result_fn)]
    922
    #[cfg(test)]
  • vsmtp-delivery 2.0.1-rc.4/src/transport/maildir.rs
    87
        // create and set rights for the MailDir & [new,cur,tmp] folder if they don't exists.
    88
        #[allow(clippy::unreachable, clippy::panic_in_result_fn)] // false positive
    89
        #[tracing::instrument(name = "create-maildir", fields(folder = ?path.display()))]
  • Aetherus 0.1.1/src/lib.rs
    30
        clippy::multiple_inherent_impl,
    31
        clippy::panic_in_result_fn,
    32
        clippy::panic,
  • async-rdma 0.4.0/src/lib.rs
    111
        clippy::missing_panics_doc, // TODO: add panic docs
    112
        clippy::panic_in_result_fn,
    113
        clippy::shadow_same, // Not too much bad
  • confget 5.0.1/src/tests.rs
    32
    // This is a test module, right?
    33
    #![allow(clippy::panic_in_result_fn)]
    34
    #![allow(clippy::unwrap_used)]
  • expect-exit 0.5.2/src/bin/test_expect_exit.rs
    42
    // ...except for these ones.
    43
    #![allow(clippy::panic_in_result_fn)]
    44
    #![allow(clippy::print_stdout)]
  • feature-check 2.0.0/src/expr.rs
    201
        #![allow(clippy::panic)]
    202
        #![allow(clippy::panic_in_result_fn)]
    203
        #![allow(clippy::use_debug)]
  • feature-check 2.0.0/src/version.rs
    248
        #![allow(clippy::default_numeric_fallback)]
    249
        #![allow(clippy::panic_in_result_fn)]
  • file-with-meta 0.2.0/src/tests.rs
    27
    // This is a test suite, right?
    28
    #![allow(clippy::panic_in_result_fn)]
    29
    #![allow(clippy::print_stdout)]
  • goff 0.1.0/src/lib.rs
    22
             clippy::as_conversions,          // Should be removed asap?
    23
             clippy::panic_in_result_fn,      // Should be removed asap
    24
             clippy::cast_possible_wrap,      // Should be considered but not removed.
  • io-extras 0.17.1/src/os/windows/stdio.rs
    8
        clippy::shadow_reuse,
    9
        clippy::panic_in_result_fn,
    10
        clippy::integer_division,
  • liberty-db 0.1.1/src/lib.rs
    66
        clippy::panic, // allow debug_assert, panic in production code
    67
        clippy::panic_in_result_fn,
    68
        clippy::missing_errors_doc, // TODO: add error docs
    71
        clippy::missing_panics_doc, // TODO: add panic docs
    72
        clippy::panic_in_result_fn,
    73
        clippy::print_stdout,
  • liberty-parser 0.1.1/src/lib.rs
    66
        clippy::panic, // allow debug_assert, panic in production code
    67
        clippy::panic_in_result_fn,
    68
        clippy::missing_errors_doc, // TODO: add error docs
    71
        clippy::missing_panics_doc, // TODO: add panic docs
    72
        clippy::panic_in_result_fn,
    73
        clippy::print_stdout,
  • plow_cli 0.4.8/src/main.rs
    55
        clippy::todo,
    56
        clippy::panic_in_result_fn,
    57
        clippy::panic,
  • plow_graphify 0.2.2/src/lib.rs
    50
        clippy::todo,
    51
        clippy::panic_in_result_fn,
    52
        clippy::panic,
  • plow_linter 0.2.8/src/lib.rs
    52
        clippy::todo,
    53
        clippy::panic_in_result_fn,
    54
        clippy::panic,
  • plow_ontology 0.2.1/src/lib.rs
    50
        clippy::todo,
    51
        clippy::panic_in_result_fn,
    52
        clippy::panic,
  • plow_package_management 0.3.1/src/lib.rs
    52
        clippy::todo,
    53
        clippy::panic_in_result_fn,
    54
        clippy::panic,
  • rdma 0.3.0/src/lib.rs
    6
        clippy::implicit_return,
    7
        clippy::panic_in_result_fn,
    8
        clippy::expect_used,
  • s3-server 0.2.0/src/ops.rs
    3
    #![allow(clippy::unnecessary_wraps, clippy::panic_in_result_fn)]
  • typed-format-version 0.2.1/rust/tests.rs
    28
    #![allow(clippy::panic_in_result_fn)]
  • utf8-locale 1.0.0/rust/tests.rs
    27
    #![allow(clippy::panic_in_result_fn)]
  • wave-insight-lib 0.1.3/src/bin/main.rs
    42
        clippy::missing_panics_doc, // TODO: add panic docs
    43
        clippy::panic_in_result_fn,
    44
        clippy::print_stdout,
  • wave-insight-lib 0.1.3/src/lib.rs
    40
        clippy::missing_panics_doc, // TODO: add panic docs
    41
        clippy::panic_in_result_fn,
    42
        clippy::integer_arithmetic, // TODO
  • zoet-macro 0.1.10/src/self_replacer.rs
    100
    fn test_self_replacer() -> Result<()> {
    101
        #![allow(clippy::panic_in_result_fn)]
    102
        use proc_macro2::TokenStream;