File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ edition = "2018"
11
11
test = false
12
12
13
13
[dependencies ]
14
- matches = " 0.1"
14
+ matches = " 0.1.9 "
15
15
percent-encoding = { version = " 2.1.0" , path = " ../percent_encoding" }
Original file line number Diff line number Diff line change 13
13
//! Converts between a string (such as an URL’s query string)
14
14
//! and a sequence of (name, value) pairs.
15
15
16
+ #![ no_std]
17
+ extern crate alloc;
18
+
16
19
#[ macro_use]
17
20
extern crate matches;
18
21
22
+ use alloc:: {
23
+ borrow:: { Borrow , Cow , ToOwned } ,
24
+ string:: String ,
25
+ } ;
26
+ use core:: str;
19
27
use percent_encoding:: { percent_decode, percent_encode_byte} ;
20
- use std:: borrow:: { Borrow , Cow } ;
21
- use std:: str;
22
28
23
29
/// Convert a byte string in the `application/x-www-form-urlencoded` syntax
24
30
/// into a iterator of (name, value) pairs.
You can’t perform that action at this time.
0 commit comments