Commit 85c3820
lib: allow unused import for ffi-testing feat
Running `cargo clippy-ci` using Rust 1.75 fails:
```
error: unused import: `tests::ffi::*`
--> src/lib.rs:28:9
|
28 | pub use tests::ffi::*;
| ^^^^^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_imports)]`
```
This commit adds a `allow(unused_imports)` gated on the same
`ffi-testing` feature that the `pub use` statement is conditional upon.1 parent a27bfda commit 85c3820
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| 28 | + | |
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
| |||
0 commit comments