We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fcbe1 commit 35653b0Copy full SHA for 35653b0
form_urlencoded/src/lib.rs
@@ -12,10 +12,14 @@
12
//!
13
//! Converts between a string (such as an URL’s query string)
14
//! and a sequence of (name, value) pairs.
15
+#![no_std]
16
17
+extern crate alloc;
18
+
19
+use alloc::borrow::{Borrow, Cow, ToOwned};
20
+use alloc::string::String;
21
+use core::str;
22
use percent_encoding::{percent_decode, percent_encode_byte};
-use std::borrow::{Borrow, Cow};
-use std::str;
23
24
/// Convert a byte string in the `application/x-www-form-urlencoded` syntax
25
/// into a iterator of (name, value) pairs.
0 commit comments