2024-06-12 19:21:50 +00:00
|
|
|
[package]
|
|
|
|
name = "rustdoc"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/rustdoc.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
html_to_markdown.workspace = true
|
|
|
|
http.workspace = true
|
2024-06-12 19:53:05 +00:00
|
|
|
indexmap.workspace = true
|
|
|
|
strum.workspace = true
|
2024-06-12 19:21:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-06-12 19:53:05 +00:00
|
|
|
indoc.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|