You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
diff --git a/src/lib.rs b/src/lib.rs
|
|
index 9fc1c3e..ee4c928 100644
|
|
--- a/src/lib.rs
|
|
+++ b/src/lib.rs
|
|
@@ -67,6 +67,10 @@
|
|
unsafe_code
|
|
)]
|
|
|
|
+// ANDROID: Unconditionally use std to allow building as a dylib
|
|
+#[macro_use]
|
|
+extern crate std;
|
|
+
|
|
use core::fmt;
|
|
|
|
/// The `Iterator` extension trait that provides the `peeking_take_while`
|