]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Rollup merge of #90625 - Milo123459:ref-unwind-safe, r=dtolnay
[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 pulldown-cmark = { version = "0.8", default-features = false }
12 minifier = "0.0.41"
13 rayon = "1.3.1"
14 serde = { version = "1.0", features = ["derive"] }
15 serde_json = "1.0"
16 smallvec = "1.6.1"
17 tempfile = "3"
18 itertools = "0.9"
19 regex = "1"
20 rustdoc-json-types = { path = "../rustdoc-json-types" }
21 tracing = "0.1"
22 tracing-tree = "0.2.0"
23 tera = { version = "1.10.0", default-features = false }
24
25 [dependencies.tracing-subscriber]
26 version = "0.3.3"
27 default-features = false
28 features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
29
30 [dev-dependencies]
31 expect-test = "1.0"
32
33 [features]
34 jemalloc = []
35
36 [package.metadata.rust-analyzer]
37 rustc_private = true