zed/crates/extension_api/Cargo.toml
Marshall Bowers d306b531c7
Add label_for_completion to extension API (#10175)
This PR adds the ability for extensions to implement
`label_for_completion` to customize completions coming back from the
language server.

We've used the Gleam extension as a motivating example, adding
`label_for_completion` support to it.

Release Notes:

- N/A

---------

Co-authored-by: Max <max@zed.dev>
Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
2024-04-04 13:56:04 -04:00

22 lines
445 B
TOML

[package]
name = "zed_extension_api"
version = "0.0.6"
description = "APIs for creating Zed extensions in Rust"
repository = "https://github.com/zed-industries/zed"
documentation = "https://docs.rs/zed_extension_api"
keywords = ["zed", "extension"]
edition = "2021"
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "src/extension_api.rs"
[dependencies]
wit-bindgen = "0.22"
[package.metadata.component]
target = { path = "wit" }