From 788cb9a0cfda4c960a7c7e3b9171db04157e81bf Mon Sep 17 00:00:00 2001 From: Alex Burka Date: Thu, 8 Feb 2018 19:12:17 -0500 Subject: [PATCH] don't suggest wildcard dependencies (#14) * don't suggest wildcard dependencies in readme * don't suggest wildcard deps in docs --- README.md | 4 ++-- strum/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3317f67..ab1000c 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ Cargo.toml. Strum_macros contains the macros needed to derive all the traits in ```toml [dependencies] -strum = "*" -strum_macros = "*" +strum = "0.8.0" +strum_macros = "0.8.0" ``` And add these lines to the root of your project, either lib.rs or main.rs. diff --git a/strum/src/lib.rs b/strum/src/lib.rs index 1b27b63..f12f038 100644 --- a/strum/src/lib.rs +++ b/strum/src/lib.rs @@ -14,8 +14,8 @@ //! //! ```toml //! [dependencies] -//! strum = "*" -//! strum_macros = "*" +//! strum = "0.8.0" +//! strum_macros = "0.8.0" //! ``` //! //! And add these lines to the root of your project, either lib.rs or main.rs.