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 }