-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Hi there, we (Rust group @sslab-gatech) are scanning crates on crates.io for potential soundness bugs. We noticed that the Retro
struct which allows for some unsafe operations is marked as #[doc(hidden)]
:
Lines 208 to 209 in 9248d74
#[doc(hidden)] | |
pub struct Retro< B: Core > { |
However, this still allows one to import this struct in and potentially use it to trigger unsafe operations from safe Rust code. Instead, maybe this struct should be pub(crate)
to actually restrict it's usage?
Metadata
Metadata
Assignees
Labels
No labels