mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-07 02:09:06 +00:00
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:
@@ -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."
|
description = "Config server for easytier. easytier-core gets config from this and web frontend use it as restful api server."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
easytier = { path = "../easytier" }
|
easytier = { path = "../easytier", default-features = false, features = ["websocket"] }
|
||||||
tracing = { version = "0.1", features = ["log"] }
|
tracing = { version = "0.1", features = ["log"] }
|
||||||
anyhow = { version = "1.0" }
|
anyhow = { version = "1.0" }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user