From ab432966f9d59ce7cb46606740e81aa1fde1ca7c Mon Sep 17 00:00:00 2001 From: alemidev Date: Sat, 17 Sep 2022 21:44:15 +0200 Subject: [PATCH] build: renamed bin targets --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 200d37d..1ef1128 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,11 +8,11 @@ default = ["nvim"] nvim = [] [[bin]] # Bin to run the CodeMP gRPC server -name = "codemp-server" +name = "server" path = "src/server/main.rs" [[bin]] # Bin to run the CodeMP gRPC client -name = "codemp-client" +name = "client-neovim" path = "src/client/main.rs" [dependencies]