Gleam-inspired typed configuration language (POC)
0

Configure Feed

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

glint / editors / zed / Cargo.toml
427 B 18 lines
1# Standalone package (not part of a parent Cargo workspace). 2[workspace] 3 4[package] 5name = "zed_glint" 6version = "0.1.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_glint.gleam 15 16[lib] 17path = "src/lib.rs" 18crate-type = ["cdylib"]