]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Rollup merge of #107777 - compiler-errors:derive_const-actually-derive-const, r=fee1...
[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 itertools = "0.10.1"
13 minifier = "0.2.2"
14 once_cell = "1.10.0"
15 pulldown-cmark = { version = "0.9.2", default-features = false }
16 regex = "1"
17 rustdoc-json-types = { path = "../rustdoc-json-types" }
18 serde_json = "1.0"
19 serde = { version = "1.0", features = ["derive"] }
20 smallvec = "1.8.1"
21 tempfile = "3"
22 thin-vec = "0.2.9"
23 tracing = "0.1"
24 tracing-tree = "0.2.0"
25
26 [dependencies.tracing-subscriber]
27 version = "0.3.3"
28 default-features = false
29 features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
30
31 [target.'cfg(windows)'.dependencies]
32 rayon = "1.5.1"
33
34 [dev-dependencies]
35 expect-test = "1.4.0"
36
37 [features]
38 jemalloc = []
39
40 [package.metadata.rust-analyzer]
41 rustc_private = true