From f329efc9240ea673bed48cb36662bd731560dd37 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sun, 23 Feb 2025 13:17:40 +0100 Subject: [PATCH] working proper style of cargo toml files --- client/Cargo.toml | 3 ++- common/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 56622c5..9b8cc6d 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,10 +1,11 @@ [package] -name = "multieko2-client" +name = "client" version.workspace = true edition.workspace = true [dependencies] common = { path = "../common" } + crossterm = "0.28.1" dirs = "6.0.0" dotenvy = "0.15.7" diff --git a/common/Cargo.toml b/common/Cargo.toml index 4b689c8..3ff3269 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "multieko2-common" +name = "common" version.workspace = true edition.workspace = true diff --git a/server/Cargo.toml b/server/Cargo.toml index 7d8a663..edbf7a5 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "multieko2-server" +name = "server" version.workspace = true edition.workspace = true