mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
3a43adba00
This PR updates the `html_to_markdown` crate with the necessary changes to publish it to crates.io. Publishing it makes it available for use within extensions when implementing functionality for the Assistant. Release Notes: - N/A
26 lines
560 B
TOML
26 lines
560 B
TOML
[package]
|
|
name = "html_to_markdown"
|
|
version = "0.1.0"
|
|
description = "Convert HTML to Markdown"
|
|
repository = "https://github.com/zed-industries/zed"
|
|
documentation = "https://docs.rs/html_to_markdown"
|
|
keywords = ["html", "markdown", "html-to-markdown"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/html_to_markdown.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
html5ever.workspace = true
|
|
markup5ever_rcdom.workspace = true
|
|
regex.workspace = true
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
pretty_assertions.workspace = true
|