diff options
author | metamuffin <yvchraiqi@protonmail.com> | 2022-08-17 22:06:53 +0200 |
---|---|---|
committer | metamuffin <yvchraiqi@protonmail.com> | 2022-08-17 22:06:53 +0200 |
commit | b73b8d89a71f02f8ea6563541312efeea7ae0d92 (patch) | |
tree | ad3f1d39c4cf5472baf1d35021ed70a321d2e7ca | |
parent | 4cad1fc66422f84ade7ee29f86f5a43738c065f4 (diff) | |
download | karlender-b73b8d89a71f02f8ea6563541312efeea7ae0d92.tar karlender-b73b8d89a71f02f8ea6563541312efeea7ae0d92.tar.bz2 karlender-b73b8d89a71f02f8ea6563541312efeea7ae0d92.tar.zst |
only enable unix by default
-rw-r--r-- | karld/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/karld/Cargo.toml b/karld/Cargo.toml index 845e2ad..e5f79bd 100644 --- a/karld/Cargo.toml +++ b/karld/Cargo.toml @@ -18,7 +18,8 @@ lazy_static = "1.4.0" tungstenite = { version = "0.17.3", optional = true } [features] -default = ["unix", "stdio", "tcp", "websocket"] +default = ["unix"] +full = ["unix", "stdio", "tcp", "websocket"] websocket = ["dep:tungstenite"] unix = [] stdio = [] |