]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Rollup merge of #104062 - notriddle:notriddle/sidebar-filler, r=GuillaumeGomez
[rust.git] / src / librustdoc / Cargo.toml
1 [package]
2 name = "rustdoc"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 path = "lib.rs"
8
9 [dependencies]
10 arrayvec = { version = "0.7", default-features = false }
11 askama = { version = "0.11", default-features = false, features = ["config"] }
12 atty = "0.2"
13 itertools = "0.10.1"
14 minifier = "0.2.2"
15 once_cell = "1.10.0"
16 pulldown-cmark = { version = "0.9.2", default-features = false }
17 regex = "1"
18 rustdoc-json-types = { path = "../rustdoc-json-types" }
19 serde_json = "1.0"
20 serde = { version = "1.0", features = ["derive"] }
21 smallvec = "1.8.1"
22 tempfile = "3"
23 thin-vec = "0.2.9"
24 tracing = "0.1"
25 tracing-tree = "0.2.0"
26
27 [dependencies.tracing-subscriber]
28 version = "0.3.3"
29 default-features = false
30 features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
31
32 [target.'cfg(windows)'.dependencies]
33 rayon = "1.5.1"
34
35 [dev-dependencies]
36 expect-test = "1.0"
37
38 [features]
39 jemalloc = []
40
41 [package.metadata.rust-analyzer]
42 rustc_private = true