]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Auto merge of #94304 - notriddle:notriddle/buffer-args, r=CraftSpider
[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
26 [dependencies.tracing-subscriber]
27 version = "0.3.3"
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