Cargo.toml

 1[package]
 2name = "zed_extension_api"
 3version = "0.0.7"
 4description = "APIs for creating Zed extensions in Rust"
 5repository = "https://github.com/zed-industries/zed"
 6documentation = "https://docs.rs/zed_extension_api"
 7keywords = ["zed", "extension"]
 8edition = "2021"
 9license = "Apache-2.0"
10
11# Don't publish v0.0.7 until we're ready to commit to the breaking API changes
12# Marshall is DRI on this.
13publish = false
14
15[lints]
16workspace = true
17
18[lib]
19path = "src/extension_api.rs"
20
21[dependencies]
22serde = { version = "1.0", features = ["derive"] }
23serde_json = "1.0"
24wit-bindgen = "0.22"
25
26[package.metadata.component]
27target = { path = "wit" }