From 740419ffb8f82cc826dbbe82f13fb20c0aad0648 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 11 May 2024 19:29:38 +0100 Subject: [PATCH] refactor: specify server dependency in workspace --- Cargo.toml | 2 ++ crates/cli/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 286231b..d7d9147 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,8 @@ unwrap_used = "warn" expect_used = "warn" [workspace.dependencies] +git-next-server = { path = "crates/server" } + # CLI parsing clap = { version = "4.5", features = ["cargo", "derive"] } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 11ec607..b22f5b0 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -4,7 +4,7 @@ version = { workspace = true } edition = { workspace = true } [dependencies] -git-next-server = { path = "../server" } +git-next-server = { workspace = true } # CLI parsing clap = { workspace = true }