Skip to content

Commit e06e3f7

Browse files
committed
Add badges to README.md
1 parent f80a2c8 commit e06e3f7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
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

57
This is a tiny helper crate for simplifying the construction of URL query strings.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
use 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
2929
const FRAGMENT: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'<').add(b'>').add(b'`');

0 commit comments

Comments
 (0)