mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
c851e6edba
This PR adds the ability for extensions to implement `language_server_workspace_configuration` to provide workspace configuration to the language server. We've used the Dart extension as a motivating example for this, pulling it out into an extension in the process. Release Notes: - Removed built-in support for Dart, in favor of making it available as an extension. The Dart extension will be suggested for download when you open a `.dart` file. --------- Co-authored-by: Max <max@zed.dev> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
24 lines
515 B
TOML
24 lines
515 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]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
wit-bindgen = "0.22"
|
|
|
|
[package.metadata.component]
|
|
target = { path = "wit" }
|