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.
This commit is contained in:
fanyang
2026-04-05 21:22:56 +08:00
parent ed8df2d58f
commit ee9b51ff8a
+1 -1
View File
@@ -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"