mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
8b586ef8e7
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>
16 lines
222 B
TOML
16 lines
222 B
TOML
[package]
|
|
name = "zed_zig"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/zig.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
zed_extension_api = "0.0.5"
|