gleam: Switch to published version of zed_extension_api (#16256)

This PR updates the Gleam extension to use the published version of the
`zed_extension_api`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-14 18:04:05 -04:00 committed by GitHub
parent 18aff55f34
commit 2e1750d5e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 2 deletions

13
Cargo.lock generated
View file

@ -13977,12 +13977,23 @@ dependencies = [
"wit-bindgen",
]
[[package]]
name = "zed_extension_api"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "594fd10dd0f2f853eb243e2425e7c95938cef49adb81d9602921d002c5e6d9d9"
dependencies = [
"serde",
"serde_json",
"wit-bindgen",
]
[[package]]
name = "zed_gleam"
version = "0.1.3"
dependencies = [
"html_to_markdown 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"zed_extension_api 0.1.0",
"zed_extension_api 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]

View file

@ -14,4 +14,4 @@ crate-type = ["cdylib"]
[dependencies]
html_to_markdown = "0.1.0"
zed_extension_api = { path = "../../crates/extension_api" }
zed_extension_api = "0.1.0"