summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0201e992e1de832697f812af8ddcce548bd47e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "mktoc"
description = "Generate Table of Contents from Markdown files"
license = "MIT"
version = "2.1.0"
authors = ["Kevin Gimbel <hallo@kevingimbel.com>"]
edition = "2018"

[lib]
name = "mktoc"
path = "src/lib.rs"

[[bin]]
name = "mktoc"
path = "src/bin.rs"

[dependencies]
structopt = "0.3"
regex = "1.3.1"

[dev-dependencies]
criterion = "0.2"

[[bench]]
name = "mktoc_benchmark"
harness = false