2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
name = "rustdoc"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-21 23:40:29 -05:00
|
|
|
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 }
|
2022-01-26 10:24:34 -06:00
|
|
|
minifier = "0.0.42"
|
2022-01-10 13:34:07 -06:00
|
|
|
rayon = "1.5.1"
|
2019-06-29 12:30:45 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-02-14 08:37:30 -06:00
|
|
|
smallvec = "1.6.1"
|
2018-05-08 15:06:04 -05:00
|
|
|
tempfile = "3"
|
2020-09-12 01:24:09 -05:00
|
|
|
itertools = "0.9"
|
2020-10-13 08:46:34 -05:00
|
|
|
regex = "1"
|
2021-01-25 15:23:43 -06:00
|
|
|
rustdoc-json-types = { path = "../rustdoc-json-types" }
|
2020-12-28 12:28:29 -06:00
|
|
|
tracing = "0.1"
|
2021-12-21 11:00:30 -06:00
|
|
|
tracing-tree = "0.2.0"
|
2020-12-28 12:28:29 -06:00
|
|
|
|
|
|
|
[dependencies.tracing-subscriber]
|
2021-12-22 10:14:06 -06:00
|
|
|
version = "0.3.3"
|
2020-12-28 12:28:29 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"]
|
2020-08-27 05:50:28 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-31 14:04:09 -05:00
|
|
|
expect-test = "1.0"
|
2021-03-22 14:31:42 -05:00
|
|
|
|
2021-04-04 16:07:56 -05:00
|
|
|
[features]
|
|
|
|
jemalloc = []
|
|
|
|
|
2021-03-22 14:31:42 -05:00
|
|
|
[package.metadata.rust-analyzer]
|
2021-03-22 14:42:05 -05:00
|
|
|
rustc_private = true
|