Skip to content

dma-buf: Implement Display and Error by hand, and drop thiserror

e9650df
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Error handling cleanups and small things here and there #14

dma-buf: Implement Display and Error by hand, and drop thiserror
e9650df
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded May 26, 2025 in 0s

clippy

4 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 4
Note 0
Help 0

Versions

  • rustc 1.89.0-nightly (283db70ac 2025-05-25)
  • cargo 1.89.0-nightly (68db37499 2025-05-22)
  • clippy 0.1.89 (283db70ace 2025-05-25)

Annotations

Check warning on line 11 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the feature `strict_provenance` has been stable since 1.84.0 and no longer requires an attribute to enable

warning: the feature `strict_provenance` has been stable since 1.84.0 and no longer requires an attribute to enable
  --> src/lib.rs:11:9
   |
11 |         strict_provenance
   |         ^^^^^^^^^^^^^^^^^

Check warning on line 9 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the feature `type_privacy_lints` has been stable since 1.79.0 and no longer requires an attribute to enable

warning: the feature `type_privacy_lints` has been stable since 1.79.0 and no longer requires an attribute to enable
 --> src/lib.rs:9:9
  |
9 |         type_privacy_lints,
  |         ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(stable_features)]` on by default

Check warning on line 18 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unknown lint: `lossy_provenance_casts`

warning: unknown lint: `lossy_provenance_casts`
  --> src/lib.rs:18:9
   |
18 |         lossy_provenance_casts,
   |         ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the `lossy_provenance_casts` lint is unstable
   = note: see issue #130351 <https://github.com/rust-lang/rust/issues/130351> for more information
   = help: add `#![feature(strict_provenance_lints)]` to the crate attributes to enable
   = note: this compiler was built on 2025-05-25; consider upgrading it if it is out of date

Check warning on line 17 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unknown lint: `fuzzy_provenance_casts`

warning: unknown lint: `fuzzy_provenance_casts`
  --> src/lib.rs:17:9
   |
17 |         fuzzy_provenance_casts,
   |         ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the `fuzzy_provenance_casts` lint is unstable
   = note: see issue #130351 <https://github.com/rust-lang/rust/issues/130351> for more information
   = help: add `#![feature(strict_provenance_lints)]` to the crate attributes to enable
   = note: this compiler was built on 2025-05-25; consider upgrading it if it is out of date
   = note: `#[warn(unknown_lints)]` on by default