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 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-09 23:52:49 -04:00
parent 11414c15b2
commit e776fb9bb1

View file

@ -10,7 +10,7 @@ name = "arc"
path = "src/main.rs"
[features]
default = ["server"]
default = []
server = ["dep:arc-api"]
[dependencies]