summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Wilke <kenneth.wilke@gmail.com>2022-05-15 13:15:26 -0500
committerKenneth Wilke <kenneth.wilke@gmail.com>2022-05-15 13:17:29 -0500
commit8f08095199c7ad76086626fb44da1b3e78fd6bda (patch)
treecaa82db093dae8192530b5196f734ad5148f0140
parentd1bacdd67aebda1ff13c0acdacd7bc89bc078e81 (diff)
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`.
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
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"