We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10560b8 commit dcc4affCopy full SHA for dcc4aff
src/lib.rs
@@ -146,6 +146,12 @@ pub mod byteorder;
146
#[doc(hidden)]
147
pub mod derive_util;
148
149
+// TODO(#196): Once we figure out how to make the `project!` macro safe
150
+// (specifically, by statically rejecting projection through `deref`), remove
151
+// this `#[doc(hidden)]` and make `project` part of our public API.
152
+#[doc(hidden)]
153
+pub mod project;
154
+
155
#[cfg(feature = "byteorder")]
156
pub use crate::byteorder::*;
157
#[cfg(any(feature = "derive", test))]
0 commit comments