From 8f08095199c7ad76086626fb44da1b3e78fd6bda Mon Sep 17 00:00:00 2001 From: Kenneth Wilke Date: Sun, 15 May 2022 13:15:26 -0500 Subject: [PATCH] Added minimum Rust version to Cargo.toml I was installing this crate to work on another project and realized I couldn't build this because I was using Rust `1.57` which doesn't yet have the fstrings. I am upgrading my local install to `1.60`, but prior to that I verified that everything seemed good to go on `1.58.1`. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index ca6625c..f431f26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ license = "MPL-2.0" homepage = "https://github.com/badboy/mdbook-toc" repository = "https://github.com/badboy/mdbook-toc" edition = "2018" +rust-version = "1.58" [dependencies] mdbook = "0.4.10"