Skip to content

Commit

Permalink
Allow Arc with non-sync payload in clippy
Browse files Browse the repository at this point in the history
Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (apache#1945)", first released in 18.0.0
  • Loading branch information
mcheshkov committed Aug 26, 2024
1 parent 9bd2291 commit 510567a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,7 @@ harness = false
[[bench]]
name = "buffer_create"
harness = false

[lints.clippy]
# Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (#1945)", first released in 18.0.0
arc_with_non_send_sync = "allow"
6 changes: 5 additions & 1 deletion parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,8 @@ harness = false

[[bench]]
name = "arrow_array_reader"
harness = false
harness = false

[lints.clippy]
# Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (#1945)", first released in 18.0.0
arc_with_non_send_sync = "allow"

0 comments on commit 510567a

Please sign in to comment.