1diff --git a/src/lib.rs b/src/lib.rs 2index 5ee0f2c..9de75bc 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -235,6 +235,10 @@ 6 //! [good cryptographic hygiene]: https://github.com/veorq/cryptocoding#clean-memory-of-secret-data 7 //! [`Ordering::SeqCst`]: core::sync::atomic::Ordering::SeqCst 8 9+/// Local Android change: Use std to allow building as a dylib. 10+#[cfg(android_dylib)] 11+extern crate std; 12+ 13 #[cfg(feature = "alloc")] 14 extern crate alloc; 15