1diff --git a/src/lib.rs b/src/lib.rs 2index 220af6b..cd5cca0 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -247,6 +247,10 @@ appropriate `repr` attribute: 6 #![warn(clippy::all)] 7 #![no_std] 8 9+/// Local Android change: Use std to allow building as a dylib. 10+#[cfg(android_dylib)] 11+extern crate std; 12+ 13 use core::fmt::{Debug, Formatter, Result}; 14 use core::ops::*; 15