From f075e1bf716f898d6f570489eb66f1bc537e52d0 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 13 Jun 2020 22:36:21 -0700 Subject: [PATCH] New style of readme badges --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index de54464..cff3bb3 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ itoa ==== -[![Build Status](https://img.shields.io/github/workflow/status/dtolnay/itoa/CI/master)](https://github.com/dtolnay/itoa/actions?query=branch%3Amaster) -[![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa) -[![Rust Documentation](https://img.shields.io/badge/api-rustdoc-blue.svg)](https://docs.rs/itoa) +[github](https://github.com/dtolnay/itoa) +[crates.io](https://crates.io/crates/itoa) +[docs.rs](https://docs.rs/itoa) +[build status](https://github.com/dtolnay/itoa/actions?query=branch%3Amaster) This crate provides fast functions for printing integer primitives to an [`io::Write`] or a [`fmt::Write`]. The implementation comes straight from