From 6472adbd223d9f3b8d08edfee5f55cbb0c0d8b3e Mon Sep 17 00:00:00 2001 From: Ashish Myles Date: Sat, 6 Apr 2024 21:03:32 -0400 Subject: [PATCH] Updated one more version missed during README edit. --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1650955..5d1edff 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This crate is `no_std` compatible. To use it without `std`: ```toml [dependencies] -downcast-rs = { version = "1.2.0", default-features = false } +downcast-rs = { version = "1.2.1", default-features = false } ``` To make a trait downcastable, make it extend either `downcast::Downcast` or diff --git a/src/lib.rs b/src/lib.rs index 0659e18..b7e3411 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ //! //! ```toml //! [dependencies] -//! downcast-rs = { version = "1.2.0", default-features = false } +//! downcast-rs = { version = "1.2.1", default-features = false } //! ``` //! //! To make a trait downcastable, make it extend either `downcast::Downcast` or