From 7fb8f0fb8a8394454010457a4af8793e9c47fb9b Mon Sep 17 00:00:00 2001 From: David Stern Date: Wed, 22 Apr 2026 18:03:18 -0400 Subject: [PATCH 1/2] Actually add LICENSE.md and wire into Cargo.toml files. --- Cargo.toml | 5 +++++ LICENSE.md | 23 +++++++++++++++++++++++ command-signatures/Cargo.toml | 5 ++++- completion-metadata/Cargo.toml | 6 ++++-- 4 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 LICENSE.md diff --git a/Cargo.toml b/Cargo.toml index e6627f79..d1adbc02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,11 @@ [workspace] +authors = "Warp Team " members = [ "completion-metadata", "command-signatures", ] resolver = "2" + +[workspace.package] +license = "MIT" +publish = false diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..d3c2c674 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,23 @@ +MIT License + +Copyright (c) 2026 Denver Technologies, Inc. (Warp) + +Copyright (c) 2021 Hercules Labs Inc. (Fig) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/command-signatures/Cargo.toml b/command-signatures/Cargo.toml index 3e17a99b..c5fe4ba9 100644 --- a/command-signatures/Cargo.toml +++ b/command-signatures/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "warp-command-signatures" -version = "0.1.0" +version = "0.0.0" edition = "2021" +authors.workspace = true +publish.workspace = true +license.workspace = true [dependencies] cfg-if = "1.0.0" diff --git a/completion-metadata/Cargo.toml b/completion-metadata/Cargo.toml index bc03afd7..cf9d51aa 100644 --- a/completion-metadata/Cargo.toml +++ b/completion-metadata/Cargo.toml @@ -1,8 +1,10 @@ [package] name = "warp-completion-metadata" -version = "0.1.0" -authors = ["Warp Team "] +version = "0.0.0" edition = "2021" +authors.workspace = true +publish.workspace = true +license.workspace = true [dependencies] itertools = "0.10.0" From d31293622480e92d65984a5384f66982a941c511 Mon Sep 17 00:00:00 2001 From: David Stern Date: Wed, 22 Apr 2026 18:06:29 -0400 Subject: [PATCH 2/2] Fix syntax error. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d1adbc02..fe98b0bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,4 @@ [workspace] -authors = "Warp Team " members = [ "completion-metadata", "command-signatures", @@ -7,5 +6,6 @@ members = [ resolver = "2" [workspace.package] +authors = ["Warp Team "] license = "MIT" publish = false