• apca 0.26.1/src/api/v2/account_activities.rs
    312
      /// corresponding variant.
    313
      #[allow(clippy::result_large_err)]
    314
      pub fn into_trade(self) -> Result<TradeActivity, Self> {
    322
      /// corresponding variant.
    323
      #[allow(clippy::result_large_err)]
    324
      pub fn into_non_trade(self) -> Result<NonTradeActivity, Self> {
  • avm-interface 0.28.1/src/outcome.rs
    69
        #[allow(clippy::result_large_err)]
    70
        pub fn from_raw_outcome(
  • avm-server 0.28.1/src/avm.rs
    60
        /// Create AVM with provided config.
    61
        #[allow(clippy::result_large_err)]
    62
        pub fn new(config: AVMConfig<E>) -> AVMResult<Self, E> {
    80
        #[allow(clippy::result_large_err)]
    81
        pub fn call(
    130
        /// Cleanup data that become obsolete.
    131
        #[allow(clippy::result_large_err)]
    132
        pub fn cleanup_data(&mut self, particle_id: &str) -> AVMResult<(), E> {
    142
        #[allow(clippy::result_large_err)]
    143
        fn save_anomaly_data(
  • cairo-lang-sierra-to-casm 1.0.0-alpha.2/src/lib.rs
    4
    // TODO(ilya): Reduce the size of CompilationError.
    5
    #[allow(clippy::result_large_err)]
    6
    pub mod compiler;
  • cairo-lang-starknet 1.0.0-alpha.2/src/casm_contract_class.rs
    62
        // TODO(ilya): Reduce the size of CompilationError.
    63
        #[allow(clippy::result_large_err)]
    64
        pub fn from_contract_class(
  • citadel_proto 0.3.0/src/proto/remote.rs
    203
        #[allow(clippy::result_large_err)]
    204
        pub fn try_send_with_custom_ticket(
    212
        #[allow(clippy::result_large_err)]
    213
        pub fn try_send(
  • cranko 0.15.0/src/version.rs
    98
        /// why this operation depends on the version template and is fallible.
    99
        #[allow(clippy::result_large_err)]
    100
        pub fn parse_bump_scheme(
  • drawbridge-server 0.4.0/src/auth/oidc.rs
    177
        /// Asserts that the token has a scope that satisfies the given context and level.
    178
        #[allow(clippy::result_large_err)]
    179
        pub fn assert_scope(
  • fuel-indexer 0.2.2/src/ffi.rs
    168
    impl<'a> WasmArg<'a> {
    169
        #[allow(clippy::result_large_err)]
    170
        pub fn new(instance: &Instance, bytes: Vec<u8>) -> IndexerResult<WasmArg> {
  • full_moon 0.17.0/src/ast/mod.rs
    2238
        /// UnexpectedToken error will be returned.
    2239
        #[allow(clippy::result_large_err)]
    2240
        pub fn from_tokens(tokens: Vec<Token>) -> Result<Ast, AstError> {
  • full_moon 0.17.0/src/ast/parser_util.rs
    66
        #[allow(clippy::result_large_err)]
    67
        fn parse<'a>(
  • full_moon 0.17.0/src/ast/parsers.rs
    1258
    #[cfg(feature = "roblox")]
    1259
    #[allow(clippy::result_large_err)]
    1260
    fn parse_interpolated_string(
  • full_moon 0.17.0/src/lib.rs
    73
    /// ```
    74
    #[allow(clippy::result_large_err)]
    75
    pub fn parse(code: &str) -> Result<ast::Ast, Error> {
  • git-cinnabar 0.6.0-rc2/src/hg_connect_http.rs
    196
        #[allow(clippy::result_large_err)]
    197
        fn execute_once(mut self) -> Result<HttpResponse, (c_int, Self)> {
  • git-credentials 0.9.0/src/helper/cascade.rs
    70
        /// When _storing_ or _erasing_ all programs are instructed in order.
    71
        #[allow(clippy::result_large_err)]
    72
        pub fn invoke(&mut self, mut action: helper::Action, mut prompt: git_prompt::Options<'_>) -> protocol::Result {
  • git-credentials 0.9.0/src/lib.rs
    36
    /// If more control is required, use the [`Cascade`][helper::Cascade] type.
    37
    #[allow(clippy::result_large_err)]
    38
    pub fn builtin(action: helper::Action) -> protocol::Result {
  • git-credentials 0.9.0/src/protocol/context/mod.rs
    56
            /// normally this isn't the case.
    57
            #[allow(clippy::result_large_err)]
    58
            pub fn destructure_url_in_place(&mut self, use_http_path: bool) -> Result<&mut Self, protocol::Error> {
  • git-credentials 0.9.0/src/protocol/mod.rs
    59
    /// Convert the outcome of a helper invocation to a helper result, assuring that the identity is complete in the process.
    60
    #[allow(clippy::result_large_err)]
    61
    pub fn helper_outcome_to_result(outcome: Option<helper::Outcome>, action: helper::Action) -> Result {
  • git-credentials 0.9.0/tests/helper/cascade.rs
    152
        #[allow(clippy::result_large_err)]
    153
        fn invoke_cascade<'a>(names: impl IntoIterator<Item = &'a str>, action: Action) -> protocol::Result {
  • git-object 0.26.0/src/object/mod.rs
    97
        /// Turns this instance into a [`Blob`][Blob] if it is one.
    98
        #[allow(clippy::result_large_err)]
    99
        pub fn try_into_blob(self) -> Result<Blob, Self> {
    112
        /// Turns this instance into a [`Commit`][Commit] if it is one.
    113
        #[allow(clippy::result_large_err)]
    114
        pub fn try_into_commit(self) -> Result<Commit, Self> {
    120
        /// Turns this instance into a [`Tree`][Tree] if it is one.
    121
        #[allow(clippy::result_large_err)]
    122
        pub fn try_into_tree(self) -> Result<Tree, Self> {
    128
        /// Turns this instance into a [`Tag`][Tag] if it is one.
    129
        #[allow(clippy::result_large_err)]
    130
        pub fn try_into_tag(self) -> Result<Tag, Self> {
  • git-protocol 0.26.2/src/fetch/handshake.rs
    13
    /// `progress` is used to inform about what's currently happening.
    14
    #[allow(clippy::result_large_err)]
    15
    #[maybe_async]
  • git-protocol 0.26.2/src/fetch_fn.rs
    49
    /// _Note_ that depending on the `delegate`, the actual action performed can be `ls-refs`, `clone` or `fetch`.
    50
    #[allow(clippy::result_large_err)]
    51
    #[maybe_async]
  • git-protocol 0.26.2/src/handshake/function.rs
    11
    /// `progress` is used to inform about what's currently happening.
    12
    #[allow(clippy::result_large_err)]
    13
    #[maybe_async]
  • git-repository 0.33.0/src/clone/mod.rs
    47
        /// will be removed automatically as soon as this instance drops.
    48
        #[allow(clippy::result_large_err)]
    49
        pub fn new<Url, E>(
  • git-repository 0.33.0/src/lib.rs
    189
    /// See [`clone::PrepareFetch::new()] for a function to take full control over all options.
    190
    #[allow(clippy::result_large_err)]
    191
    pub fn prepare_clone_bare<Url, E>(
    211
    /// See [`clone::PrepareFetch::new()] for a function to take full control over all options.
    212
    #[allow(clippy::result_large_err)]
    213
    pub fn prepare_clone<Url, E>(url: Url, path: impl AsRef<std::path::Path>) -> Result<clone::PrepareFetch, clone::Error>
  • git-repository 0.33.0/src/remote/connection/fetch/mod.rs
    116
        /// It's best to unblock it by placing it into its own thread or offload it should usage in an async context be truly required.
    117
        #[allow(clippy::result_large_err)]
    118
        #[git_protocol::maybe_async::maybe_async]
  • git-repository 0.33.0/src/remote/connection/ref_map.rs
    94
        /// - `gitoxide.userAgent` is read to obtain the application user agent for git servers and for HTTP servers as well.
    95
        #[allow(clippy::result_large_err)]
    96
        #[git_protocol::maybe_async::maybe_async]
    105
        #[allow(clippy::result_large_err)]
    106
        #[git_protocol::maybe_async::maybe_async]
    175
        #[allow(clippy::result_large_err)]
    176
        #[git_protocol::maybe_async::maybe_async]
    248
    /// Assume sha1 if server says nothing, otherwise configure anything beyond sha1 in the local repo configuration
    249
    #[allow(clippy::result_large_err)]
    250
    fn extract_object_format(
  • json-ld-core 0.12.1/src/object/node.rs
    512
    	/// Fails and returns itself if the node is *not* an unnamed graph.
    513
    	#[allow(clippy::result_large_err)]
    514
    	#[inline(always)]
  • kll-compiler 0.1.2/src/lib.rs
    325
    #[allow(clippy::result_large_err)]
    326
    pub fn parse(text: &str) -> Result<KllFile, PestError> {
  • kll-compiler 0.1.2/src/parser.rs
    414
    impl<'a> KllFile<'a> {
    415
        #[allow(clippy::should_implement_trait, clippy::result_large_err)]
    416
        pub fn from_str(text: &str) -> Result<KllFile> {
  • maturin 0.14.12/src/auditwheel/audit.rs
    98
    /// Find incompliant symbols from symbol versions
    99
    #[allow(clippy::result_large_err)]
    100
    fn find_incompliant_symbols(
    119
    #[allow(clippy::result_large_err)]
    120
    fn policy_is_satisfied(
    264
    /// Does nothing for `platform_tag` set to `Off`/`Linux` or non-linux platforms.
    265
    #[allow(clippy::result_large_err)]
    266
    pub fn auditwheel_rs(
  • maturin 0.14.12/src/auditwheel/repair.rs
    7
    /// Find external shared library dependencies
    8
    #[allow(clippy::result_large_err)]
    9
    pub fn find_external_libs(
  • maturin 0.14.12/src/upload.rs
    262
    /// Uploads a single wheel to the registry
    263
    #[allow(clippy::result_large_err)]
    264
    pub fn upload(registry: &Registry, wheel_path: &Path) -> Result<(), UploadError> {
  • meilisearch-sdk 0.21.2/src/tasks.rs
    292
        /// ```
    293
        #[allow(clippy::result_large_err)] // Since `self` has been consumed, this is not an issue
    294
        pub fn try_make_index(self, client: &Client) -> Result<Index, Self> {
  • multiversx-chain-vm 0.1.4/src/tx_execution/builtin_function_mocks/general/migrate_username_mock.rs
    22
    impl MigrateUserName {
    23
        #[allow(clippy::result_large_err)]
    24
        fn execute_with_result(&self, tx_input: TxInput, tx_cache: TxCache) -> BlockchainResult {
  • near-client 0.1.1/src/client.rs
    46
    impl Signer {
    47
        #[allow(clippy::result_large_err)]
    48
        pub fn from_secret_str(secret_key: &str, account_id: AccountId, nonce: Nonce) -> Result<Self> {
    102
    impl NearClient {
    103
        #[allow(clippy::result_large_err)]
    104
        pub fn new(url: Url) -> Result<Self> {
    336
    impl Output {
    337
        #[allow(clippy::result_large_err)]
    338
        /// If function don't return anything it will return [`Error::DeserializeTransactionOutput`]
    396
        #[allow(clippy::result_large_err)]
    397
        pub fn build(self) -> Result<FunctionCall<'a>> {
    471
    #[allow(clippy::result_large_err)]
    472
    pub(crate) fn proceed_outcome(
  • near-client 0.1.1/src/utils.rs
    124
    #[allow(clippy::result_large_err)]
    125
    pub(crate) fn serialize_arguments(args: Option<Value>) -> Result<Vec<u8>> {
  • near-workspaces 0.7.0/src/result.rs
    42
        #[allow(clippy::result_large_err)]
    43
        pub fn into_result(self) -> Result<T, ExecutionFailure> {
    197
        /// Converts this object into a [`Result`] holding either [`ExecutionSuccess`] or [`ExecutionFailure`].
    198
        #[allow(clippy::result_large_err)]
    199
        pub fn into_result(self) -> Result<ExecutionSuccess, ExecutionFailure> {
  • noodles-cram 0.22.1/src/data_container/builder.rs
    44
        #[allow(clippy::result_large_err)]
    45
        pub fn add_record(&mut self, record: Record) -> Result<(), AddRecordError> {
  • noodles-cram 0.22.1/src/data_container/slice/builder.rs
    48
        #[allow(clippy::result_large_err)]
    49
        pub fn add_record(&mut self, record: Record) -> Result<&Record, AddRecordError> {
  • peace_item_spec_file_download 0.0.6/src/file_download_error.rs
    154
        // See <https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err>
    155
        #[allow(clippy::result_large_err)]
    156
        pub(crate) fn src_get(
  • prost-reflect 0.10.1/src/descriptor/build/options.rs
    343
        #[allow(clippy::result_large_err)]
    344
        fn set_option(
    465
        #[allow(clippy::result_large_err)]
    466
        fn set_field_value(
  • qiniu-http 0.2.2/src/lib.rs
    127
    /// 每个请求的 UserAgent 由七牛 SDK 固定 UserAgent + 库 UserAgent + 请求的追加 UserAgent 三部分组成
    128
    #[allow(clippy::result_large_err)]
    129
    pub fn set_library_user_agent(user_agent: UserAgent) -> Result<(), UserAgent> {
  • ripasso 0.6.2/src/git.rs
    687
    /// Checks if the given host/host key pair is known.
    688
    #[allow(clippy::result_large_err)]
    689
    fn check_ssh_known_hosts(
  • rust-unixfs 0.3.0-alpha.2/examples/resolve.rs
    154
    #[allow(clippy::result_large_err)]
    155
    fn walk(blocks: ShardedBlockStore, mut path: IpfsPath) -> Result<Option<Cid>, Error> {
    283
        #[allow(clippy::result_large_err)]
    284
        fn as_file(&self, key: &[u8]) -> Result<std::fs::File, Error> {
  • rust-unixfs 0.3.0-alpha.2/src/dir/sharded_lookup.rs
    56
        /// Continues the walk in the DAG of HAMT buckets searching for the original `needle`.
    57
        #[allow(clippy::result_large_err)]
    58
        pub fn continue_walk(
    112
        /// Returns the found link, the definitive negative or the means to continue the traversal.
    113
        #[allow(clippy::result_large_err)]
    114
        pub(crate) fn lookup_or_start(
    163
        ///  - is a bucket, it is pushed back to the work
    164
        #[allow(clippy::result_large_err)]
    165
        fn partition<'a>(
  • rust-unixfs 0.3.0-alpha.2/src/dir.rs
    35
    /// with `ShardedLookup::with_owned_needle` which will allow moving it between tasks and boundaries.
    36
    #[allow(clippy::result_large_err)]
    37
    pub fn resolve<'needle>(
  • rustbus 0.19.2/src/connection/dispatch_conn.rs
    210
        /// return None, it sends a default response with no content.
    211
        #[allow(clippy::result_large_err)]
    212
        pub fn run(
  • scotch-host 0.1.0/src/plugin.rs
    262
        /// Finishes building a `WasmPlugin`.
    263
        #[allow(clippy::result_large_err)]
    264
        pub fn finish(mut self) -> Result<WasmPlugin, InstantiationError> {
  • sn_interface 0.16.20/src/messaging/data/mod.rs
    221
    impl CmdResponse {
    222
        #[allow(clippy::result_large_err)]
    223
        pub fn ok(data: ReplicatedData) -> Result<CmdResponse> {
    239
        #[allow(clippy::result_large_err)]
    240
        pub fn err(data: ReplicatedData, err: Error) -> Result<CmdResponse> {
  • sspi 0.6.0/src/credssp/mod.rs
    391
        #[allow(clippy::result_large_err)]
    392
        pub fn process(&mut self, mut ts_request: TsRequest) -> Result<ServerState, ServerError> {
  • stylua 0.16.0/src/lib.rs
    319
    /// Formats given [`Ast`]
    320
    #[allow(clippy::result_large_err)]
    321
    pub fn format_ast(
    356
    /// Formats given Lua code
    357
    #[allow(clippy::result_large_err)]
    358
    pub fn format_code(
  • subrpcer 0.9.1/src/client/u.rs
    5
    /// A simple HTTP post helper which implements with [ureq](https://crates.io/crates/ureq).
    6
    #[allow(unused, clippy::result_large_err)]
    7
    pub fn send_jsonrpc(uri: &str, body: &Value) -> Result<Response, Error> {
  • twitch_message 0.1.2/src/message.rs
    117
        /// ```
    118
        #[allow(clippy::result_large_err)]
    119
        pub fn into_typed_message<T>(self) -> Result<<T as IntoStatic>::Output, Message<'static>>
  • umbral-pre 0.8.1/src/capsule_frag.rs
    175
        #[allow(clippy::many_single_char_names)]
    176
        #[allow(clippy::result_large_err)]
    177
        pub fn verify(
  • umbral-pre 0.8.1/src/key_frag.rs
    237
        /// is not provided, the verification fails.
    238
        #[allow(clippy::result_large_err)]
    239
        pub fn verify(
  • unleash-yggdrasil 0.4.2/src/strategy_parsing.rs
    478
    #[allow(clippy::result_large_err)] //Valid complaint on Clippy's part but this should be on the cold path and not a major issue
    479
    pub fn compile_rule(rule: &str) -> Result<RuleFragment, Error<Rule>> {
  • veryl-parser 0.3.1/src/parser.rs
    12
    impl Parser {
    13
        #[allow(clippy::result_large_err)]
    14
        pub fn parse<T: AsRef<Path>>(input: &str, file: &T) -> Result<Self, ParserError> {
  • websocket-util 0.11.0/src/wrap.rs
    218
      /// Attempt to advance the ping state by one step.
    219
      #[allow(clippy::result_large_err)]
    220
      fn advance<S>(&mut self, sink: &mut S, ctx: &mut Context<'_>) -> Result<(), S::Error>
  • workspaces 0.7.0/src/result.rs
    42
        #[allow(clippy::result_large_err)]
    43
        pub fn into_result(self) -> Result<T, ExecutionFailure> {
    197
        /// Converts this object into a [`Result`] holding either [`ExecutionSuccess`] or [`ExecutionFailure`].
    198
        #[allow(clippy::result_large_err)]
    199
        pub fn into_result(self) -> Result<ExecutionSuccess, ExecutionFailure> {
  • arti 1.1.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • arti 1.1.0/src/main.rs
    38
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    39
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    40
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • arti-bench 0.8.0/src/main.rs
    39
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    40
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    41
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • arti-client 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • arti-config 0.5.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • arti-hyper 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • caret 0.3.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • descriptor-wallet 0.9.0/src/bin/btc-hot.rs
    15
    #![allow(clippy::result_large_err)]
  • esplora-client 0.3.0/src/lib.rs
    46
    #![allow(clippy::result_large_err)]
  • flowc 0.91.0/src/bin/flowc/main.rs
    2
    #![warn(clippy::unwrap_used)]
    3
    #![allow(clippy::result_large_err)]
    4
    //! `flowc` is a "flow compiler" that takes a hierarchical description of a flow
  • flowr 0.91.0/tests/flow-execution_tests.rs
    1
    #![allow(clippy::result_large_err)]
  • frc46_token 4.0.0/src/lib.rs
    1
    #![allow(clippy::result_large_err)]
    2
    // https://github.com/helix-onchain/filecoin/issues/165
  • fs-mistrust 0.6.0/src/lib.rs
    42
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    43
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    44
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • holochain_state 0.1.0/src/lib.rs
    27
    // TODO - address the underlying issue:
    28
    #![allow(clippy::result_large_err)]
  • holochain_types 0.1.0/src/lib.rs
    12
    // TODO - address the underlying issue:
    13
    #![allow(clippy::result_large_err)]
  • iamb 0.0.4/src/main.rs
    2
    #![allow(clippy::needless_return)]
    3
    #![allow(clippy::result_large_err)]
    4
    #![allow(clippy::bool_assert_comparison)]
  • ibc 0.27.0/src/lib.rs
    14
    // https://github.com/cosmos/ibc-rs/issues/342
    15
    #![allow(clippy::result_large_err)]
    16
    #![doc(html_root_url = "https://docs.rs/ibc/0.27.0")]
  • ipp 4.0.0/src/lib.rs
    61
    #![allow(clippy::result_large_err)]
  • ipp-util 4.0.0/src/main.rs
    5
    #![allow(clippy::result_large_err)]
  • lnurl-rs 0.1.1/src/async.rs
    1
    //! LNURL by way of `reqwest` HTTP client.
    2
    #![allow(clippy::result_large_err)]
  • lnurl-rs 0.1.1/src/blocking.rs
    1
    //! LNURL by way of `ureq` HTTP client.
    2
    #![allow(clippy::result_large_err)]
  • lnurl-rs 0.1.1/src/lib.rs
    1
    #![allow(clippy::result_large_err)]
  • minidump-writer 0.7.0/src/linux.rs
    1
    // `WriterError` is large and clippy doesn't like that, but not a huge deal atm
    2
    #![allow(clippy::result_large_err)]
  • monument 0.13.4/src/lib.rs
    41
    #![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]
    42
    #![allow(clippy::result_large_err)]
  • mtoken 0.1.4/src/lib.rs
    1
    #![allow(clippy::result_large_err)]
  • open_creator_protocol 0.3.3/src/lib.rs
    1
    #![allow(clippy::result_large_err)]
  • ord 0.4.2/src/lib.rs
    3
      clippy::type_complexity,
    4
      clippy::result_large_err
    5
    )]
  • perpetuals 0.1.0/src/lib.rs
    3
    #![allow(clippy::result_large_err)]
  • prql-compiler 0.4.2/src/lib.rs
    77
    // yak-shaving exercise in the future.
    78
    #![allow(clippy::result_large_err)]
  • psbt 0.9.0/src/sign/signer.rs
    17
    #![allow(clippy::result_large_err)]
  • retry-error 0.3.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • rgb_node 0.9.0-rc.1/src/lib.rs
    20
    )]
    21
    #![allow(clippy::result_large_err)]
    22
    #![cfg_attr(docsrs, feature(doc_auto_cfg))]
  • safelog 0.2.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • sn_client 0.77.9/src/lib.rs
    49
    )]
    50
    #![allow(clippy::result_large_err, clippy::uninlined_format_args)]
  • sol-did 3.3.0/src/lib.rs
    4
    //! independent of the anchor framework.
    5
    #![allow(clippy::result_large_err)]
    6
    #![warn(
  • symbologyl2 0.1.1/src/us/equities/parser.rs
    1
    #![allow(clippy::result_large_err)]
  • tor-basic-utils 0.5.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-bytes 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-cell 0.7.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-cert 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-chanmgr 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-checkable 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-circmgr 0.7.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-config 0.7.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-congestion 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-consdiff 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-dirclient 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-dirmgr 0.9.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-error 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-events 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-guardmgr 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-linkspec 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-llcrypto 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-netdir 0.7.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-netdoc 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-persist 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-proto 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-protover 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-ptmgr 0.2.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-rtcompat 0.8.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-rtmock 0.7.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-socksproto 0.6.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • tor-units 0.4.0/src/lib.rs
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
    38
    //! <!-- @@ end lint list maintained by maint/add_warning @@ -->
  • ureq 2.6.2/src/lib.rs
    8
    #![allow(clippy::upper_case_acronyms)]
    9
    #![allow(clippy::result_large_err)]
    10
    #![allow(clippy::only_used_in_recursion)]
  • walletconnect 0.2.0/src/lib.rs
    1
    #![allow(clippy::result_large_err)]