zed/extensions/gleam/Cargo.toml
Marshall Bowers d7962aa2d3
Add license to Gleam extension (#8730)
This PR adds a license to the Gleam extension crate, since the bundling
script was unhappy that it didn't have one.

Since extensions like this one may ultimately live outside of Zed
itself, I went with the Apache 2.0 license.

Release Notes:

- N/A
2024-03-02 17:56:57 -05:00

16 lines
262 B
TOML

[package]
name = "zed_gleam"
version = "0.0.1"
edition = "2021"
publish = false
license = "Apache-2.0"
[dependencies]
zed_extension_api = { path = "../../crates/extension_api" }
[lib]
path = "src/gleam.rs"
crate-type = ["cdylib"]
[package.metadata.component]