]> git.proxmox.com Git - rustc.git/blame - src/librustdoc/Cargo.toml
New upstream version 1.55.0+dfsg1
[rustc.git] / src / librustdoc / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustdoc"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
7453a54e 8path = "lib.rs"
7453a54e
SL
9
10[dependencies]
cdc7bbd5 11arrayvec = { version = "0.7", default-features = false }
1b1a35ee 12pulldown-cmark = { version = "0.8", default-features = false }
17df50a5 13minifier = "0.0.41"
e74abb32 14rayon = { version = "0.3.0", package = "rustc-rayon" }
60c5eb7d
XL
15serde = { version = "1.0", features = ["derive"] }
16serde_json = "1.0"
6a06907d 17smallvec = "1.6.1"
8faf50e0 18tempfile = "3"
1b1a35ee 19itertools = "0.9"
29967ef6 20regex = "1"
5869c6ff 21rustdoc-json-types = { path = "../rustdoc-json-types" }
6a06907d
XL
22tracing = "0.1"
23tracing-tree = "0.1.9"
136023e0 24tera = { version = "1.10.0", default-features = false }
6a06907d
XL
25
26[dependencies.tracing-subscriber]
27version = "0.2.13"
28default-features = false
29features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
1b1a35ee
XL
30
31[dev-dependencies]
32expect-test = "1.0"
cdc7bbd5
XL
33
34[features]
35jemalloc = []
36
37[package.metadata.rust-analyzer]
38rustc_private = true