From 9788aff4b1910057c65bab82d311be9bb30058e5 Mon Sep 17 00:00:00 2001 From: Eva Pace Date: Thu, 1 May 2025 12:24:14 -0700 Subject: [PATCH] Fix license symlinks (#29758) Closes #29527 It looks funny in the diff, but the symlinks are indeed correct: - https://github.com/evaporei/zed/blob/fix/license-symlinks/crates/askpass/LICENSE-GPL - https://github.com/evaporei/zed/blob/fix/license-symlinks/crates/ui_macros/LICENSE-GPL I did check all ~170 crates, these were the only inconsistent ones. Release Notes: - N/A --- crates/{reqwest_client => askpass}/LICENSE-GPL | 0 crates/{askpass => reqwest_client}/LICENSE-APACHE | 0 crates/util_macros/Cargo.toml | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename crates/{reqwest_client => askpass}/LICENSE-GPL (100%) rename crates/{askpass => reqwest_client}/LICENSE-APACHE (100%) diff --git a/crates/reqwest_client/LICENSE-GPL b/crates/askpass/LICENSE-GPL similarity index 100% rename from crates/reqwest_client/LICENSE-GPL rename to crates/askpass/LICENSE-GPL diff --git a/crates/askpass/LICENSE-APACHE b/crates/reqwest_client/LICENSE-APACHE similarity index 100% rename from crates/askpass/LICENSE-APACHE rename to crates/reqwest_client/LICENSE-APACHE diff --git a/crates/util_macros/Cargo.toml b/crates/util_macros/Cargo.toml index c2d80e8c38..996eefcb30 100644 --- a/crates/util_macros/Cargo.toml +++ b/crates/util_macros/Cargo.toml @@ -3,7 +3,7 @@ name = "util_macros" version = "0.1.0" edition.workspace = true publish.workspace = true -license = "GPL-3.0-or-later" +license = "Apache-2.0" [lints] workspace = true