1
Fork 0

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`.
This commit is contained in:
Kenneth Wilke 2022-05-15 13:15:26 -05:00
parent d1bacdd67a
commit 8f08095199

View file

@ -7,6 +7,7 @@ license = "MPL-2.0"
homepage = "https://github.com/badboy/mdbook-toc" homepage = "https://github.com/badboy/mdbook-toc"
repository = "https://github.com/badboy/mdbook-toc" repository = "https://github.com/badboy/mdbook-toc"
edition = "2018" edition = "2018"
rust-version = "1.58"
[dependencies] [dependencies]
mdbook = "0.4.10" mdbook = "0.4.10"