1
Fork 0
mdbook-toc/Cargo.toml

23 lines
518 B
TOML
Raw Normal View History

2018-07-19 16:10:08 +00:00
[package]
name = "mdbook-toc"
2022-05-26 21:01:46 +00:00
version = "0.9.0"
2018-07-19 16:10:08 +00:00
authors = ["Jan-Erik Rediger <janerik@fnordig.de>"]
2019-07-10 19:22:09 +00:00
description = "mdbook preprocessor to add Table of Contents"
2019-07-10 19:27:50 +00:00
license = "MPL-2.0"
2019-07-10 19:22:09 +00:00
homepage = "https://github.com/badboy/mdbook-toc"
repository = "https://github.com/badboy/mdbook-toc"
2020-04-06 08:39:21 +00:00
edition = "2018"
rust-version = "1.58"
2018-07-19 16:10:08 +00:00
[dependencies]
2021-06-11 11:51:24 +00:00
mdbook = "0.4.10"
pulldown-cmark = "0.9.1"
log = "0.4.11"
2022-05-26 21:01:13 +00:00
clap = "3.1.18"
serde_json = "1.0.57"
toml = "0.5.6"
2020-04-06 08:39:21 +00:00
[dev-dependencies]
2022-01-25 20:01:40 +00:00
pretty_assertions = "1.0.0"
env_logger = "0.9.0"