Skip to content

Commit 35f8728

Browse files
committed
Allow Arc with non-sync payload in clippy
Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (apache#1945)", first released in 18.0.0
1 parent e5e24b6 commit 35f8728

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

arrow/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,7 @@ harness = false
163163
[[bench]]
164164
name = "buffer_create"
165165
harness = false
166+
167+
[lints.clippy]
168+
# Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (#1945)", first released in 18.0.0
169+
arc_with_non_send_sync = "allow"

parquet/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,8 @@ harness = false
7979

8080
[[bench]]
8181
name = "arrow_array_reader"
82-
harness = false
82+
harness = false
83+
84+
[lints.clippy]
85+
# Can drop this after rebase on commit 55d6073 "Require Send+Sync bounds for Allocation trait (#1945)", first released in 18.0.0
86+
arc_with_non_send_sync = "allow"

0 commit comments

Comments
 (0)