@@ -14,21 +14,31 @@ categories = ["parser-implementations", "web-programming", "encoding", "no-std"]
1414license = " MIT OR Apache-2.0"
1515include = [" src/**/*" , " LICENSE-*" , " README.md" , " tests/**" ]
1616edition = " 2018"
17- rust-version = " 1.63" # From libc
17+ rust-version = " 1.63" # From libc
1818
1919[dev-dependencies ]
2020serde = { version = " 1.0" , features = [" derive" ] }
2121serde_json = " 1.0"
2222bencher = " 0.1"
23+ tempfile = { version = " 3" }
2324
2425[target .'cfg(all(target_arch = "wasm32", target_os = "unknown"))' .dev-dependencies ]
2526wasm-bindgen-test = " 0.3"
2627
2728[dependencies ]
28- form_urlencoded = { version = " 1.2.1" , path = " ../form_urlencoded" , default-features = false , features = [" alloc" ] }
29- idna = { version = " 1.0.3" , path = " ../idna" , default-features = false , features = [" alloc" , " compiled_data" ] }
30- percent-encoding = { version = " 2.3.1" , path = " ../percent_encoding" , default-features = false , features = [" alloc" ] }
31- serde = { version = " 1.0" , optional = true , features = [" derive" ], default-features = false }
29+ form_urlencoded = { version = " 1.2.1" , path = " ../form_urlencoded" , default-features = false , features = [
30+ " alloc" ,
31+ ] }
32+ idna = { version = " 1.0.3" , path = " ../idna" , default-features = false , features = [
33+ " alloc" ,
34+ " compiled_data" ,
35+ ] }
36+ percent-encoding = { version = " 2.3.1" , path = " ../percent_encoding" , default-features = false , features = [
37+ " alloc" ,
38+ ] }
39+ serde = { version = " 1.0" , optional = true , features = [
40+ " derive" ,
41+ ], default-features = false }
3242
3343[features ]
3444default = [" std" ]
0 commit comments