]> git.proxmox.com Git - rustc.git/blob - src/librustdoc/Cargo.toml
Merge remote-tracking branch 'origin/debian/sid' into debian/sid
[rustc.git] / src / librustdoc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustdoc"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 path = "lib.rs"
9
10 [dependencies]
11 pulldown-cmark = { version = "0.8", default-features = false }
12 minifier = "0.0.33"
13 rayon = { version = "0.3.0", package = "rustc-rayon" }
14 serde = { version = "1.0", features = ["derive"] }
15 serde_json = "1.0"
16 smallvec = "1.0"
17 tempfile = "3"
18 itertools = "0.9"
19
20 [dev-dependencies]
21 expect-test = "1.0"