mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 10:59:53 +00:00
98a2ab0686
This PR changes v0.0.7 of the extension API to v0.1.0. We had a false-start in releasing v0.0.7, which has since been yanked, so we need a new version number. We'll publish v0.1.0 to crates.io once the Preview build is out tomorrow. We're incrementing the minor version so that we have some leeway in putting out patch releases of the crate within a given extension API release. Release Notes: - N/A
26 lines
600 B
TOML
26 lines
600 B
TOML
[package]
|
|
name = "zed_extension_api"
|
|
version = "0.1.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 = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
# We'll publish v0.1.0 after the release on Wednesday (2024-08-14).
|
|
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" }
|