]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Check that RPITs constrained by a recursive call in a closure are compatible
[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.2.1"
15 serde = { version = "1.0", features = ["derive"] }
16 serde_json = "1.0"
17 smallvec = "1.8.1"
18 tempfile = "3"
19 itertools = "0.10.1"
20 regex = "1"
21 rustdoc-json-types = { path = "../rustdoc-json-types" }
22 tracing = "0.1"
23 tracing-tree = "0.2.0"
24 once_cell = "1.10.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.0"
36
37 [features]
38 jemalloc = []
39
40 [package.metadata.rust-analyzer]
41 rustc_private = true