From 98e417d86b3a269fb017d4504372f2640c34c426 Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Wed, 24 Jun 2026 23:55:55 -0400 Subject: [PATCH] build: make pre-seed a default feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pre-seed deps (aws-sdk-s3, flate2, tar) are already compiled for other default features. No reason to gate it — it's a core boot-time capability. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a53aa05b2..042ca6223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ serenity = { version = "0.12", default-features = false, features = ["client", " [features] # Default: core only (Discord + Slack). Gateway ships as separate binary. -default = ["discord", "slack", "secrets-aws", "agentcore", "config-s3"] +default = ["discord", "slack", "secrets-aws", "agentcore", "config-s3", "pre-seed"] # Opt-in: compile all gateway adapters into a single unified binary unified = ["telegram", "line", "feishu", "googlechat", "wecom", "teams"]