1diff --git a/src/lib.rs b/src/lib.rs 2index 1d2dfa2..9fcae3a 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -64,6 +64,10 @@ 6 //! [PKCS#5v2 Password Based Encryption Scheme 2 (RFC 8018)]: https://tools.ietf.org/html/rfc8018#section-6.2 7 //! [scrypt]: https://en.wikipedia.org/wiki/Scrypt 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 = "pem")] 14 extern crate alloc; 15 #[cfg(feature = "std")] 16