zed/extensions/haskell/Cargo.toml
Marshall Bowers 4a325614f0
Add label_for_symbol to extension API (#10179)
This PR adds `label_for_symbol` to the extension API.

As a motivating example, we implemented `label_for_symbol` for the
Haskell extension.

Release Notes:

- N/A

Co-authored-by: Max <max@zed.dev>
2024-04-04 15:38:38 -04:00

17 lines
292 B
TOML

[package]
name = "zed_haskell"
version = "0.0.1"
edition = "2021"
publish = false
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "src/haskell.rs"
crate-type = ["cdylib"]
[dependencies]
# zed_extension_api = "0.0.4"
zed_extension_api = { path = "../../crates/extension_api" }