rust/src/librustdoc/Cargo.toml

32 lines
756 B
TOML
Raw Permalink Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustdoc"
version = "0.0.0"
2019-02-23 08:40:07 +01:00
edition = "2018"
[lib]
path = "lib.rs"
[dependencies]
arrayvec = { version = "0.5.1", default-features = false }
pulldown-cmark = { version = "0.8", default-features = false }
2021-03-04 17:35:11 +01:00
minifier = "0.0.39"
rayon = { version = "0.3.0", package = "rustc-rayon" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-02-14 15:37:30 +01:00
smallvec = "1.6.1"
tempfile = "3"
itertools = "0.9"
regex = "1"
2021-01-25 22:23:43 +01:00
rustdoc-json-types = { path = "../rustdoc-json-types" }
tracing = "0.1"
2021-03-09 17:44:51 +01:00
tracing-tree = "0.1.9"
[dependencies.tracing-subscriber]
version = "0.2.13"
default-features = false
features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
[dev-dependencies]
expect-test = "1.0"