mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-05 18:25:57 +00:00
4a325614f0
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>
17 lines
292 B
TOML
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" }
|