From e776fb9bb1cd1e6d47d5376a6ca1ec83d205481a Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 9 Mar 2026 23:52:49 -0400 Subject: [PATCH] Disable server feature by default in arc-cli CLI-only builds no longer pull in arc-api and its heavy server dependencies (axum, tower, hyper, sqlx, arc-db, arc-types) unless the server feature is explicitly enabled. Co-Authored-By: Claude Opus 4.6 --- lib/crates/arc-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crates/arc-cli/Cargo.toml b/lib/crates/arc-cli/Cargo.toml index 4de8fb0dc..c75146eca 100644 --- a/lib/crates/arc-cli/Cargo.toml +++ b/lib/crates/arc-cli/Cargo.toml @@ -10,7 +10,7 @@ name = "arc" path = "src/main.rs" [features] -default = ["server"] +default = [] server = ["dep:arc-api"] [dependencies]