
Successor to #27779 - in this PR I've applied changes manually, without futzing with if let lifetimes at all. Release Notes: - N/A
25 lines
599 B
TOML
25 lines
599 B
TOML
[package]
|
|
name = "zed_extension_api"
|
|
version = "0.4.0"
|
|
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.workspace = true
|
|
# Change back to `true` when we're ready to publish v0.4.0.
|
|
publish = false
|
|
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.41"
|
|
|
|
[package.metadata.component]
|
|
target = { path = "wit" }
|