Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add unix socket support? #172

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't enable unix socket by default (some platforms may not support).
  • Loading branch information
javaarchive committed Jun 1, 2024
commit 1779a4cc5bbd4c7a45ca233fd59f692ae56e5a5b
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" }
all-features = true

[features]
default = ["tcp", "udp", "websocket", "unixsocket"] # All features that are crossplatform by default
default = ["tcp", "udp", "websocket"] # All features that are crossplatform by default
tcp = ["mio/net", "socket2"]
udp = ["mio/net", "socket2"]
websocket = ["tungstenite", "url", "tcp"]