• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diff --git a/src/untrusted.rs b/src/untrusted.rs
2index 2f88bb4..b9f1439 100644
3--- a/src/untrusted.rs
4+++ b/src/untrusted.rs
5@@ -102,6 +102,9 @@
6 )]
7 #![no_std]
8
9+// ANDROID: use std to allow building as a dylib.
10+#[cfg(android_dylib)]
11+extern crate std;
12+
13 /// A wrapper around `&'a [u8]` that helps in writing panic-free code.
14 ///
15 /// No methods of `Input` will ever panic.
16