From 949517deb234a1cfb49c36dbf1b7f5240f4f2d57 Mon Sep 17 00:00:00 2001 From: Rasmus Melchior Jacobsen Date: Mon, 30 Jan 2023 10:00:24 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bdced38..b274716 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # A simple Url primitive +[![CI](https://github.com/rmja/nourl/actions/workflows/ci.yaml/badge.svg)](https://github.com/rmja/nourl/actions/workflows/ci.yaml) [![crates.io](https://img.shields.io/crates/v/nourl.svg)](https://crates.io/crates/nourl) This crate provides a simple `Url` type that can be used in embedded `no_std` environments. @@ -16,4 +17,4 @@ assert_eq!(url.port_or_default(), 80); assert_eq!(url.path(), "/foo/bar"); ``` -The implementation is heavily inspired (close to copy/pase) from the Url type in [reqwless](https://github.com/drogue-iot/reqwless). \ No newline at end of file +The implementation is heavily inspired (close to copy/pase) from the Url type in [reqwless](https://github.com/drogue-iot/reqwless).