Gleam-authored Zed extension (Gleam → Wasm guest) for Gleam LSP + highlighting
1

Configure Feed

Select the types of activity you want to include in your feed.

zed-gleam-native / Cargo.toml
427 B 18 lines
1# Standalone package (not part of a parent Cargo workspace). 2[workspace] 3 4[package] 5name = "zed_gleam" 6version = "0.6.0" 7edition = "2021" 8publish = false 9license = "Apache-2.0" 10build = "build.rs" 11 12# Build driver only: Zed runs `cargo build --target wasm32-wasip2`. 13# build.rs → gleam export zed-extension; linker installs that component. 14# Guest source: src/zed_gleam.gleam 15 16[lib] 17path = "src/lib.rs" 18crate-type = ["cdylib"]