39 lines
845 B
TOML
39 lines
845 B
TOML
[package]
|
|
name = "rustdoc"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
askama = { version = "0.11", default-features = false, features = ["config"] }
|
|
atty = "0.2"
|
|
pulldown-cmark = { version = "0.9", default-features = false }
|
|
minifier = "0.0.42"
|
|
rayon = "1.5.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
smallvec = "1.6.1"
|
|
tempfile = "3"
|
|
itertools = "0.9"
|
|
regex = "1"
|
|
rustdoc-json-types = { path = "../rustdoc-json-types" }
|
|
tracing = "0.1"
|
|
tracing-tree = "0.2.0"
|
|
|
|
[dependencies.tracing-subscriber]
|
|
version = "0.3.3"
|
|
default-features = false
|
|
features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.0"
|
|
|
|
[features]
|
|
jemalloc = []
|
|
|
|
[package.metadata.rust-analyzer]
|
|
rustc_private = true
|