zed/crates/extension_api/Cargo.toml
Marshall Bowers 8b586ef8e7
Add new make-file-executable API for extensions (#10047)
This PR adds a new function, `make-file-executable`, to the Zed
extension API that can be used to mark a given file as executable
(typically the language server binary).

This is available in v0.0.5 of the `zed_extension_api` crate.

We also reworked how we represent the various WIT versions on disk to
make it a bit clearer what the version number entails.

Release Notes:

- N/A

---------

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

22 lines
445 B
TOML

[package]
name = "zed_extension_api"
version = "0.0.5"
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" }