]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Update `ProjectionElem::Downcast` documentation
[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 pulldown-cmark = { version = "0.9", default-features = false }
14 minifier = "0.0.43"
15 rayon = "1.5.1"
16 serde = { version = "1.0", features = ["derive"] }
17 serde_json = "1.0"
18 smallvec = "1.6.1"
19 tempfile = "3"
20 itertools = "0.10.1"
21 regex = "1"
22 rustdoc-json-types = { path = "../rustdoc-json-types" }
23 tracing = "0.1"
24 tracing-tree = "0.2.0"
25 once_cell = "1.10.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 [dev-dependencies]
33 expect-test = "1.0"
34
35 [features]
36 jemalloc = []
37
38 [package.metadata.rust-analyzer]
39 rustc_private = true