You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit enables two additional lints in the Scylla Rust wrapper,
which have successfully caught some issues in the codebase:
- `unnameable_types`,
- `unreachable_pub`.
Both have already been used in the Rust Driver.
As some problems:
- either were not possible to be fixed, because they are caused by the
bindgen-generated code,
- or would require a lot of changes in the codebase and are not
worth it right now (e.g., `CassSession` and `CassRetryPolicy`),
this commit adds `#[expect(unnameable_types)]` and
`#[expect(unreachable_pub)]` attributes to the affected structs.
0 commit comments