From 5ae1aaa36d88f9dcc13c58daa816731dfc187725 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sun, 23 Feb 2025 14:37:47 +0100 Subject: [PATCH] proper licenseing --- Cargo.toml | 2 +- client/Cargo.toml | 1 + common/Cargo.toml | 1 + server/Cargo.toml | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fc5dfee..65121d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,9 +7,9 @@ resolver = "2" # name = "Multieko2" version = "0.1.0" edition = "2021" +license = "GPL-3.0-or-later" authors = ["Filip Priečinský "] description = "Poriadny uctovnicky software." -license = "GPLv3" readme = "README.md" repository = "https://gitlab.com/filipriec/multieko2" categories = ["command-line-interface"] diff --git a/client/Cargo.toml b/client/Cargo.toml index 9b8cc6d..fdeb94e 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -2,6 +2,7 @@ name = "client" version.workspace = true edition.workspace = true +license.workspace = true [dependencies] common = { path = "../common" } diff --git a/common/Cargo.toml b/common/Cargo.toml index 3ff3269..06f12aa 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -2,6 +2,7 @@ name = "common" version.workspace = true edition.workspace = true +license.workspace = true [dependencies] tonic = "0.12.3" diff --git a/server/Cargo.toml b/server/Cargo.toml index edbf7a5..987cff1 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -2,6 +2,7 @@ name = "server" version.workspace = true edition.workspace = true +license.workspace = true [dependencies] common = { path = "../common" }