From 3a11de9632a17e0a13e75e3cb10a64f50e8ed8e1 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 14 Feb 2021 17:30:41 +0100 Subject: [PATCH] Remove unused [badges] section from Cargo.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The badges are no longer shown on crates.io and I don’t think they were ever shown on lib.rs. According to the documentation we should instead rely on the badges in the README. https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section Thanks @lopopolo for noticing this on #97. --- Cargo.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 321bb62..5e4eed1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,11 +11,6 @@ categories = ["development-tools", "rust-patterns"] license = "MIT" edition = "2018" -[badges] -travis-ci = { repository = "mgeisler/version-sync" } -appveyor = { repository = "mgeisler/version-sync" } -codecov = { repository = "mgeisler/version-sync" } - [dependencies] pulldown-cmark = { version = "0.8", default-features = false } semver-parser = "0.9"