mdBook/Cargo.toml

68 lines
1.7 KiB
TOML
Raw Normal View History

2015-07-06 20:21:59 +08:00
[package]
name = "mdbook"
2022-04-16 02:24:45 +08:00
version = "0.4.18"
authors = [
2018-12-25 20:10:45 +08:00
"Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",
"Matt Ickstadt <mattico8@gmail.com>"
]
documentation = "http://rust-lang.github.io/mdBook/index.html"
edition = "2018"
exclude = ["/guide/*"]
2015-08-07 05:37:44 +08:00
keywords = ["book", "gitbook", "rustbook", "markdown"]
license = "MPL-2.0"
2015-08-07 05:37:44 +08:00
readme = "README.md"
repository = "https://github.com/rust-lang/mdBook"
description = "Creates a book from markdown files"
2015-07-07 03:12:24 +08:00
[dependencies]
anyhow = "1.0.28"
chrono = "0.4"
2022-01-19 05:56:45 +08:00
clap = { version = "3.0", features = ["cargo"] }
clap_complete = "3.0"
env_logger = "0.9.0"
2021-05-26 23:11:01 +08:00
handlebars = "4.0"
lazy_static = "1.0"
log = "0.4"
memchr = "2.0"
opener = "0.5"
2022-01-18 23:01:23 +08:00
pulldown-cmark = { version = "0.9.1", default-features = false }
2022-03-09 15:04:50 +08:00
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
2019-05-30 23:23:42 +08:00
serde_json = "1.0"
2021-02-22 07:15:16 +08:00
shlex = "1"
2019-05-30 23:23:42 +08:00
tempfile = "3.0"
toml = "0.5.1"
topological-sort = "0.1.0"
# Watch feature
2017-02-19 09:24:27 +08:00
notify = { version = "4.0", optional = true }
gitignore = { version = "1.0", optional = true }
2016-04-02 10:46:05 +08:00
# Serve feature
futures-util = { version = "0.3.4", optional = true }
2021-07-26 10:14:40 +08:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"], optional = true }
2022-06-21 01:48:03 +08:00
warp = { version = "0.3.2", default-features = false, features = ["websocket"], optional = true }
2016-04-02 10:46:05 +08:00
# Search feature
2022-05-23 10:30:32 +08:00
elasticlunr-rs = { version = "3.0.0", optional = true }
2019-09-21 17:22:52 +08:00
ammonia = { version = "3", optional = true }
[dev-dependencies]
2021-07-14 07:03:07 +08:00
assert_cmd = "1"
predicates = "2"
select = "0.5"
semver = "1.0"
pretty_assertions = "1.2.1"
walkdir = "2.0"
[features]
default = ["watch", "serve", "search"]
watch = ["notify", "gitignore"]
serve = ["futures-util", "tokio", "warp"]
search = ["elasticlunr-rs", "ammonia"]
2015-08-06 18:38:48 +08:00
[[bin]]
doc = false
name = "mdbook"