zed/extensions/html/Cargo.toml
Marshall Bowers 49c53bc0ec
Extract HTML support into an extension (#10130)
This PR extracts HTML support into an extension and removes the built-in
HTML support from Zed.

Release Notes:

- Removed built-in support for HTML, in favor of making it available as
an extension. The HTML extension will be suggested for download when you
open a `.html`, `.htm`, or `.shtml` file.
2024-04-03 12:42:36 -04:00

17 lines
224 B
TOML

[package]
name = "zed_html"
version = "0.0.1"
edition = "2021"
publish = false
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "src/html.rs"
crate-type = ["cdylib"]
[dependencies]
zed_extension_api = "0.0.4"