From 17bbb03065aba86905b03484f255119cfc50f993 Mon Sep 17 00:00:00 2001 From: Ashish Myles Date: Wed, 17 May 2023 00:12:34 -0400 Subject: [PATCH] Add an explanation for why downcast-rs doesn't receive regular code changes. --- README.md | 5 +++++ README.tpl | 5 +++++ src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18f45b1..45e4b51 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,11 @@ fn main() { } ``` +## Why no changes in a while? + +This library is a thoroughly-tested boilerplate generator, is code complete, has +no unsafe, and is vanishingly unlikely to have any security issues to patch. + ## License Copyright 2020, Ashish Myles (maintainer) and contributors. diff --git a/README.tpl b/README.tpl index 9ec95d6..b414e32 100644 --- a/README.tpl +++ b/README.tpl @@ -1,5 +1,10 @@ {{readme}} +## Why no changes in a while? + +This library is a thoroughly-tested boilerplate generator, is code complete, has +no unsafe, and is vanishingly unlikely to have any security issues to patch. + ## License Copyright 2020, Ashish Myles (maintainer) and contributors. diff --git a/src/lib.rs b/src/lib.rs index b211219..ca57c9a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ #![deny(unsafe_code)] #![cfg_attr(not(feature = "std"), no_std)] -//! [![Build status](https://img.shields.io/github/workflow/status/marcianx/downcast-rs/CI/master)](https://github.com/marcianx/downcast-rs/actions) +//! [![Build status](https://img.shields.io/github/actions/workflow/status/marcianx/downcast-rs/main.yml?branch=master)](https://github.com/marcianx/downcast-rs/actions) //! [![Latest version](https://img.shields.io/crates/v/downcast-rs.svg)](https://crates.io/crates/downcast-rs) //! [![Documentation](https://docs.rs/downcast-rs/badge.svg)](https://docs.rs/downcast-rs) //!