From d7962aa2d3c0ba517707edd830a33b7f9b8f8acb Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sat, 2 Mar 2024 17:56:57 -0500 Subject: [PATCH] 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 --- extensions/gleam/Cargo.toml | 2 ++ extensions/gleam/LICENSE-APACHE | 1 + 2 files changed, 3 insertions(+) create mode 120000 extensions/gleam/LICENSE-APACHE diff --git a/extensions/gleam/Cargo.toml b/extensions/gleam/Cargo.toml index 1e8ff5cdea..b4167dd1ca 100644 --- a/extensions/gleam/Cargo.toml +++ b/extensions/gleam/Cargo.toml @@ -2,6 +2,8 @@ name = "zed_gleam" version = "0.0.1" edition = "2021" +publish = false +license = "Apache-2.0" [dependencies] zed_extension_api = { path = "../../crates/extension_api" } diff --git a/extensions/gleam/LICENSE-APACHE b/extensions/gleam/LICENSE-APACHE new file mode 120000 index 0000000000..1cd601d0a3 --- /dev/null +++ b/extensions/gleam/LICENSE-APACHE @@ -0,0 +1 @@ +../../LICENSE-APACHE \ No newline at end of file