jhelovuo / RustDDS

Rust implementation of Data Distribution Service

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`speedy::Readable` derive macro is causing Clippy errors

danieleades opened this issue · comments

The derived speedy::Readable implementation has methods that dereference raw pointers. Since in principle, these raw pointers could be anything, the methods should be marked as unsafe, but they're not. Clippy doesn't love this.

This needs to be fixed upstream. see - koute/speedy#34

Right now this breaking all of the linting for all of the PRs, which is obscuring other potential issues.

Looks like this is fixed.