mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
243a0e764d
This PR adds a temporary block on publishing v0.0.7 of the `zed_extension_api`. We have breaking changes to the extension API that are currently staged on `main` and are still being iterated on, so we don't want to publish again until we're ready to commit to the new API. This change is intended to prevent accidental publishing of the crate before we're ready. Release Notes: - N/A
28 lines
638 B
TOML
28 lines
638 B
TOML
[package]
|
|
name = "zed_extension_api"
|
|
version = "0.0.7"
|
|
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"
|
|
|
|
# Don't publish v0.0.7 until we're ready to commit to the breaking API changes
|
|
# Marshall is DRI on this.
|
|
publish = false
|
|
|
|
[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" }
|