From 1ad929e3ffa3162141c30f7aa2d7d80729f3ff8e Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 5 Feb 2026 13:42:52 -0300 Subject: [PATCH] Enable embed-ui feature by default to fix UI directory not found error --- .forgejo/workflows/botui.yaml | 1 - Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/botui.yaml b/.forgejo/workflows/botui.yaml index 4f7229c..ea2aef4 100644 --- a/.forgejo/workflows/botui.yaml +++ b/.forgejo/workflows/botui.yaml @@ -16,7 +16,6 @@ on: env: CARGO_BUILD_JOBS: 8 - CARGO_INCREMENTAL: 0 CARGO_NET_RETRY: 10 jobs: diff --git a/Cargo.toml b/Cargo.toml index 08915d3..aea3571 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ workspace = true features = ["http-client"] [features] -default = ["ui-server", "chat", "drive", "tasks", "admin"] +default = ["ui-server", "embed-ui", "chat", "drive", "tasks", "admin"] ui-server = [] embed-ui = ["rust-embed"]