From 63ea4f7b86237f2c0558a05094f400615bb0bd74 Mon Sep 17 00:00:00 2001 From: arthomnix Date: Sun, 23 Mar 2025 20:22:38 +0000 Subject: [PATCH] add license --- LICENSE | 9 +++++++++ eepy-derive/Cargo.toml | 2 ++ eepy-example-app/Cargo.toml | 2 ++ eepy-gui/Cargo.toml | 2 ++ eepy-launcher/Cargo.toml | 2 ++ eepy-serial-host/Cargo.toml | 2 ++ eepy-serial/Cargo.toml | 2 ++ eepy-sys/Cargo.toml | 2 ++ eepy/Cargo.toml | 2 ++ eepytool/Cargo.toml | 2 ++ elf2epb/Cargo.toml | 2 ++ pervasive-spi/Cargo.toml | 2 ++ tp370pgh01/Cargo.toml | 2 ++ 13 files changed, 33 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d6d638d --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2025 arthomnix + +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. diff --git a/eepy-derive/Cargo.toml b/eepy-derive/Cargo.toml index 501fa4d..24485aa 100644 --- a/eepy-derive/Cargo.toml +++ b/eepy-derive/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-derive" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [lib] proc-macro = true diff --git a/eepy-example-app/Cargo.toml b/eepy-example-app/Cargo.toml index 7ef51d1..7bcedec 100644 --- a/eepy-example-app/Cargo.toml +++ b/eepy-example-app/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-example-app" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-sys = { path = "../eepy-sys" } diff --git a/eepy-gui/Cargo.toml b/eepy-gui/Cargo.toml index 5626c76..671cefc 100644 --- a/eepy-gui/Cargo.toml +++ b/eepy-gui/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-gui" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-sys = { path = "../eepy-sys", features = ["embedded-graphics", "fugit"] } diff --git a/eepy-launcher/Cargo.toml b/eepy-launcher/Cargo.toml index 912cfd8..5f6a795 100644 --- a/eepy-launcher/Cargo.toml +++ b/eepy-launcher/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-launcher" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-sys = { path = "../eepy-sys", features = ["critical-section-impl"] } diff --git a/eepy-serial-host/Cargo.toml b/eepy-serial-host/Cargo.toml index 06aafbe..938c645 100644 --- a/eepy-serial-host/Cargo.toml +++ b/eepy-serial-host/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-serial-host" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-serial = { path = "../eepy-serial" } diff --git a/eepy-serial/Cargo.toml b/eepy-serial/Cargo.toml index 3a83499..a9d762b 100644 --- a/eepy-serial/Cargo.toml +++ b/eepy-serial/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-serial" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-sys = { path = "../eepy-sys" } diff --git a/eepy-sys/Cargo.toml b/eepy-sys/Cargo.toml index d20df4a..ab16dc2 100644 --- a/eepy-sys/Cargo.toml +++ b/eepy-sys/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy-sys" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-derive = { path = "../eepy-derive" } diff --git a/eepy/Cargo.toml b/eepy/Cargo.toml index 6800ab1..4c5f7b6 100644 --- a/eepy/Cargo.toml +++ b/eepy/Cargo.toml @@ -2,6 +2,8 @@ name = "eepy" version = "0.1.0-alpha" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] fw16-epd-bsp = { path = "../fw16-epd-bsp", features = ["defmt"] } diff --git a/eepytool/Cargo.toml b/eepytool/Cargo.toml index 193417b..1327a9a 100644 --- a/eepytool/Cargo.toml +++ b/eepytool/Cargo.toml @@ -2,6 +2,8 @@ name = "eepytool" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] eepy-serial-host = { path = "../eepy-serial-host" } diff --git a/elf2epb/Cargo.toml b/elf2epb/Cargo.toml index f5dc2e9..b727dba 100644 --- a/elf2epb/Cargo.toml +++ b/elf2epb/Cargo.toml @@ -2,6 +2,8 @@ name = "elf2epb" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] elf.workspace = true diff --git a/pervasive-spi/Cargo.toml b/pervasive-spi/Cargo.toml index 5605682..6fc60e2 100644 --- a/pervasive-spi/Cargo.toml +++ b/pervasive-spi/Cargo.toml @@ -3,6 +3,8 @@ name = "pervasive-spi" version = "0.1.1" edition = "2024" description = "Bitbang driver for the SPI-derived protocol used by Pervasive Displays e-paper displays" +authors = ["arthomnix"] +license = "MIT" [dependencies] embedded-hal.workspace = true diff --git a/tp370pgh01/Cargo.toml b/tp370pgh01/Cargo.toml index 7aa21ee..189b7d5 100644 --- a/tp370pgh01/Cargo.toml +++ b/tp370pgh01/Cargo.toml @@ -2,6 +2,8 @@ name = "tp370pgh01" version = "0.1.0" edition = "2024" +authors = ["arthomnix"] +license = "MIT" [dependencies] pervasive-spi = { path = "../pervasive-spi" } -- 2.51.2