File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 11# A query string builder for percent encoding key-value pairs
22
3+ [ ![ Crates.io] ( https://img.shields.io/crates/v/query-string-builder )] ( https://crates.io/crates/query-string-builder )
4+ [ ![ Crates.io] ( https://img.shields.io/crates/l/query-string-builder )] ( https://crates.io/crates/query-string-builder )
35[ ![ codecov] ( https://codecov.io/gh/sunsided/query-string-builder/graph/badge.svg?token=HUCXM04DOG )] ( https://codecov.io/gh/sunsided/query-string-builder )
46
57This is a tiny helper crate for simplifying the construction of URL query strings.
Original file line number Diff line number Diff line change 2323
2424use std:: fmt:: { Debug , Display , Formatter } ;
2525
26- use percent_encoding:: { AsciiSet , CONTROLS , utf8_percent_encode } ;
26+ use percent_encoding:: { utf8_percent_encode , AsciiSet , CONTROLS } ;
2727
2828/// https://url.spec.whatwg.org/#fragment-percent-encode-set
2929const FRAGMENT : & AsciiSet = & CONTROLS . add ( b' ' ) . add ( b'"' ) . add ( b'<' ) . add ( b'>' ) . add ( b'`' ) ;
You can’t perform that action at this time.
0 commit comments