rust/src/librustdoc/Cargo.toml

39 lines
845 B
TOML
Raw Normal View History

[package]
name = "rustdoc"
version = "0.0.0"
2021-09-19 11:49:55 -05:00
edition = "2021"
[lib]
path = "lib.rs"
[dependencies]
arrayvec = { version = "0.7", default-features = false }
2022-01-17 10:36:39 -06:00
askama = { version = "0.11", default-features = false, features = ["config"] }
2022-01-12 11:46:18 -06:00
atty = "0.2"
2021-12-24 05:21:04 -06:00
pulldown-cmark = { version = "0.9", default-features = false }
minifier = "0.0.42"
2022-01-10 13:34:07 -06:00
rayon = "1.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-02-14 08:37:30 -06:00
smallvec = "1.6.1"
tempfile = "3"
itertools = "0.9"
regex = "1"
2021-01-25 15:23:43 -06:00
rustdoc-json-types = { path = "../rustdoc-json-types" }
tracing = "0.1"
tracing-tree = "0.2.0"
[dependencies.tracing-subscriber]
2021-12-22 10:14:06 -06:00
version = "0.3.3"
default-features = false
features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
[dev-dependencies]
expect-test = "1.0"
2021-04-04 16:07:56 -05:00
[features]
jemalloc = []
[package.metadata.rust-analyzer]
2021-03-22 14:42:05 -05:00
rustc_private = true