From 953c4415e23282332a0a697efe1aafdc7df6dbe2 Mon Sep 17 00:00:00 2001 From: Jaseem Abid Date: Thu, 24 Feb 2022 18:13:20 +0000 Subject: [PATCH] Fix crates.io badge Not sure what happened to http://meritbadge.herokuapp.com, but it's not running anymore and points to default heroku error page. Sheilds.io has a crates.io integration, so this should just work out of the box. ``` ![crates.io](https://img.shields.io/crates/v/$CRATE.svg) ``` Example [![crates.io](https://img.shields.io/crates/v/prometheus.svg)](https://crates.io/crates/prometheus) Signed-off-by: Jaseem Abid --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e91d3109..47b862ba 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/tikv/rust-prometheus.svg?branch=master)](https://travis-ci.org/pingcap/rust-prometheus) [![docs.rs](https://docs.rs/prometheus/badge.svg)](https://docs.rs/prometheus) -[![crates.io](http://meritbadge.herokuapp.com/prometheus)](https://crates.io/crates/prometheus) +[![crates.io](https://img.shields.io/crates/v/prometheus.svg)](https://crates.io/crates/prometheus) This is the [Rust](https://www.rust-lang.org) client library for [Prometheus](http://prometheus.io). The main data structures and APIs are ported