From ee9b51ff8a7b6f6257ed5c52052ec65719632543 Mon Sep 17 00:00:00 2001 From: fanyang Date: Sun, 5 Apr 2026 21:22:56 +0800 Subject: [PATCH] fix(build): avoid easytier default features in web Prevent workspace builds with --no-default-features from pulling in easytier's default transport stack through easytier-web. This keeps the aarch64-unknown-linux-musl zigbuild path from reaching kcp-sys when the workspace is built without default features. --- easytier-web/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easytier-web/Cargo.toml b/easytier-web/Cargo.toml index d86e3181..ef1d61ff 100644 --- a/easytier-web/Cargo.toml +++ b/easytier-web/Cargo.toml @@ -5,7 +5,7 @@ edition.workspace = true description = "Config server for easytier. easytier-core gets config from this and web frontend use it as restful api server." [dependencies] -easytier = { path = "../easytier" } +easytier = { path = "../easytier", default-features = false, features = ["websocket"] } tracing = { version = "0.1", features = ["log"] } anyhow = { version = "1.0" } thiserror = "1.0"