Add missing 'extern crate std' patch.

Bug: http://b/339424309
Test: treehugger
Change-Id: Ie2b224932c4cbdf2e8719f4b154274f7366c01d6
diff --git a/patches/std.diff b/patches/std.diff
new file mode 100644
index 0000000..87b0a3c
--- /dev/null
+++ b/patches/std.diff
@@ -0,0 +1,14 @@
+diff --git b/src/lib.rs a/src/lib.rs
+index 6198e98..48ac257 100644
+--- b/src/lib.rs
++++ a/src/lib.rs
+@@ -6,6 +6,9 @@
+ #![allow(unknown_lints)]
+ #![doc(html_root_url = "https://docs.rs/pin-utils/0.1.0")]
+ 
++// ANDROID: Use std to allow building as a dylib.
++extern crate std;
++
+ #[doc(hidden)]
+ pub mod core_reexport {
+     pub use core::*;