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