1
Fork 0
mdbook-toc/Cargo.toml
Kenneth Wilke 8f08095199 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`.
2022-05-15 13:17:29 -05:00

23 lines
518 B
TOML

[package]
name = "mdbook-toc"
version = "0.8.0"
authors = ["Jan-Erik Rediger <janerik@fnordig.de>"]
description = "mdbook preprocessor to add Table of Contents"
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"
pulldown-cmark = "0.9.1"
log = "0.4.11"
clap = "2.33.3"
serde_json = "1.0.57"
toml = "0.5.6"
[dev-dependencies]
pretty_assertions = "1.0.0"
env_logger = "0.9.0"