From 0414340051b8241aa4c111e9a7a13cfd002aa65b Mon Sep 17 00:00:00 2001 From: felipegchi Date: Mon, 16 Jan 2023 10:56:06 -0300 Subject: [PATCH] chore: added license --- LICENSE | 21 +++++++++++++++++++++ crates/kind-checker/Cargo.toml | 1 + crates/kind-derive/Cargo.toml | 1 + crates/kind-driver/Cargo.toml | 1 + crates/kind-parser/Cargo.toml | 1 + crates/kind-pass/Cargo.toml | 1 + crates/kind-query/Cargo.toml | 1 + crates/kind-report/Cargo.toml | 1 + crates/kind-span/Cargo.toml | 1 + crates/kind-target-hvm/Cargo.toml | 1 + crates/kind-target-kdl/Cargo.toml | 1 + crates/kind-tests/Cargo.toml | 1 + crates/kind-tree/Cargo.toml | 1 + 13 files changed, 33 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..8fa5696e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Victor Maia + +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/crates/kind-checker/Cargo.toml b/crates/kind-checker/Cargo.toml index 26d5c395..ad6b4700 100644 --- a/crates/kind-checker/Cargo.toml +++ b/crates/kind-checker/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-checker" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-derive/Cargo.toml b/crates/kind-derive/Cargo.toml index 9e3101df..9be7d324 100644 --- a/crates/kind-derive/Cargo.toml +++ b/crates/kind-derive/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-derive" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-driver/Cargo.toml b/crates/kind-driver/Cargo.toml index ffcc4efe..46f387a4 100644 --- a/crates/kind-driver/Cargo.toml +++ b/crates/kind-driver/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-driver" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-parser/Cargo.toml b/crates/kind-parser/Cargo.toml index 9267b228..0b3a270d 100644 --- a/crates/kind-parser/Cargo.toml +++ b/crates/kind-parser/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-parser" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-pass/Cargo.toml b/crates/kind-pass/Cargo.toml index 84c63af3..dab99f37 100644 --- a/crates/kind-pass/Cargo.toml +++ b/crates/kind-pass/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-pass" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-query/Cargo.toml b/crates/kind-query/Cargo.toml index a1e74564..f1b13101 100644 --- a/crates/kind-query/Cargo.toml +++ b/crates/kind-query/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-query" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-report/Cargo.toml b/crates/kind-report/Cargo.toml index 9e519b85..af1d437c 100644 --- a/crates/kind-report/Cargo.toml +++ b/crates/kind-report/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-report" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-span/Cargo.toml b/crates/kind-span/Cargo.toml index fe98c0f9..e27eca74 100644 --- a/crates/kind-span/Cargo.toml +++ b/crates/kind-span/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-span" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-target-hvm/Cargo.toml b/crates/kind-target-hvm/Cargo.toml index e32f1890..0c359130 100644 --- a/crates/kind-target-hvm/Cargo.toml +++ b/crates/kind-target-hvm/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-target-hvm" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-target-kdl/Cargo.toml b/crates/kind-target-kdl/Cargo.toml index edbc1cb0..5ce5b648 100644 --- a/crates/kind-target-kdl/Cargo.toml +++ b/crates/kind-target-kdl/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-target-kdl" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-tests/Cargo.toml b/crates/kind-tests/Cargo.toml index 71ed621d..c85a9b81 100644 --- a/crates/kind-tests/Cargo.toml +++ b/crates/kind-tests/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-tests" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/kind-tree/Cargo.toml b/crates/kind-tree/Cargo.toml index 6e0dffe1..4c647c72 100644 --- a/crates/kind-tree/Cargo.toml +++ b/crates/kind-tree/Cargo.toml @@ -2,6 +2,7 @@ name = "kind-tree" version = "0.1.0" edition = "2021" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html