]> git.proxmox.com Git - rustc.git/blame - src/librustdoc/Cargo.toml
New upstream version 1.53.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 }
6a06907d 13minifier = "0.0.39"
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"
24
25[dependencies.tracing-subscriber]
26version = "0.2.13"
27default-features = false
28features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
1b1a35ee
XL
29
30[dev-dependencies]
31expect-test = "1.0"
cdc7bbd5
XL
32
33[features]
34jemalloc = []
35
36[package.metadata.rust-analyzer]
37rustc_private = true