-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·63 lines (61 loc) · 1.64 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "mdbook-utils"
version = "0.1.4"
authors = ["John CD"]
edition = "2024"
rust-version = "1.85"
description = "Tools to manage links, reference definitions, and code examples in Markdown files, especially `mdbook` source directories."
readme = "README.md"
homepage = "https://john-cd.com/mdbook-utils/"
repository = "https://github.com/john-cd/mdbook-utils/"
license = "MIT OR Apache-2.0"
keywords = ["documentation", "markdown", "book", "mdbook", "rustbook"]
categories = [
"parser-implementations",
"parsing",
"text-processing",
"development-tools",
"command-line-utilities",
]
publish = true
exclude = [
"/.devcontainer",
"/.github",
"/test_book",
"/user_guide",
".*",
"TODO.md",
"rustfmt.toml",
"justfile",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"RELEASES.md",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
cargo_toml = "0.20.5"
clap = { version = "4.5.22", features = ["derive"] }
console = "0.15.8"
csv = "1.3.1"
dialoguer = { version = "0.11.0", features = ["history", "completion"] }
dotenvy = "0.15.7"
enumflags2 = "0.7.10"
envy = "0.4.2"
heck = "0.5.0"
once_cell = "1.20.2"
pulldown-cmark = "0.12.2"
# pulldown-cmark = { version = "0.12", default-features = false, features = ["simd"] }
# pulldown-cmark-to-cmark = "11"
quick-xml = "0.37.1"
rand = "0.8.5"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
toml = { version = "0.8.19", features = ["parse"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = "2.5.4"
walkdir = "2.5.0"
[[bin]]
doc = false
name = "mdbook-utils"