From 88f18d105013df0f7a3cf086a17bfff1e26290e0 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sun, 23 Feb 2025 13:10:00 +0100 Subject: [PATCH] broken, not working, needs fix --- Cargo.toml | 16 ++++++++++++++++ client/Cargo.toml | 6 +++--- common/Cargo.toml | 6 +++--- server/Cargo.toml | 6 +++--- 4 files changed, 25 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0d85ef..fc5dfee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,19 @@ [workspace] members = ["client", "server", "common"] resolver = "2" + +[workspace.package] +# TODO: idk how to do the name, fix later +# name = "Multieko2" +version = "0.1.0" +edition = "2021" +authors = ["Filip Priečinský "] +description = "Poriadny uctovnicky software." +license = "GPLv3" +readme = "README.md" +repository = "https://gitlab.com/filipriec/multieko2" +categories = ["command-line-interface"] + +# [workspace.metadata] +# TODO: +# documentation = "https://docs.rs/accounting-client"` diff --git a/client/Cargo.toml b/client/Cargo.toml index ad7c688..56622c5 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "client" -version = "0.1.0" -edition = "2021" +name = "multieko2-client" +version.workspace = true +edition.workspace = true [dependencies] common = { path = "../common" } diff --git a/common/Cargo.toml b/common/Cargo.toml index 14d1ca6..4b689c8 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "common" -version = "0.1.0" -edition = "2021" +name = "multieko2-common" +version.workspace = true +edition.workspace = true [dependencies] tonic = "0.12.3" diff --git a/server/Cargo.toml b/server/Cargo.toml index 5979f27..7d8a663 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "server" -version = "0.1.0" -edition = "2021" +name = "multieko2-server" +version.workspace = true +edition.workspace = true [dependencies] common = { path = "../common" }