]> git.lizzy.rs Git - rust.git/blob - src/tools/rustbook/Cargo.toml
Rollup merge of #71013 - jonas-schievink:visit-projection, r=eddyb
[rust.git] / src / tools / rustbook / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustbook"
4 version = "0.1.0"
5 license = "MIT OR Apache-2.0"
6 edition = "2018"
7
8 [features]
9 linkcheck = ["mdbook-linkcheck", "codespan-reporting", "codespan"]
10
11 [dependencies]
12 clap = "2.25.0"
13 failure = "0.1"
14 mdbook-linkcheck = { version = "0.5.0", optional = true }
15 # Keep in sync with mdbook-linkcheck.
16 codespan = { version = "0.5", optional = true }
17 codespan-reporting = { version = "0.5", optional = true }
18
19
20 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
21 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
22 # for more information.
23 rustc-workspace-hack = "1.0.0"
24
25 [dependencies.mdbook]
26 version = "0.3.0"
27 default-features = false
28 features = ["search"]