mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
3767e7e5f0
This PR restores the ability to publish the `html_to_markdown` crate after #23291. This crate is [published](https://crates.io/crates/html_to_markdown) to crates.io so that it can be consumed by extensions. Release Notes: - N/A
26 lines
583 B
TOML
26 lines
583 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.workspace = true
|
|
publish = true
|
|
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
|