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

feat: add weboscket feature to node and client #2423

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions autonomi-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ default = ["metrics"]
local = ["sn_peers_acquisition/local", "autonomi/local"]
metrics = ["sn_logging/process-metrics"]
network-contacts = ["sn_peers_acquisition/network-contacts"]
websockets = ["autonomi/websockets"]

[[bench]]
name = "files"
Expand Down
1 change: 1 addition & 0 deletions autonomi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ registers = ["data"]
loud = []
external-signer = ["sn_evm/external-signer", "data"]
extension-module = ["pyo3/extension-module"]
websockets = ["sn_networking/websockets"]

[dependencies]
bip39 = "2.0.0"
Expand Down
1 change: 1 addition & 0 deletions sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ nightly = []
open-metrics = ["sn_networking/open-metrics", "prometheus-client"]
encrypt-records = ["sn_networking/encrypt-records"]
upnp = ["sn_networking/upnp"]
websockets = ["sn_networking/websockets"]
loud = ["sn_networking/loud"] # loud mode: print important messages to console
extension-module = ["pyo3/extension-module"]

Expand Down
Loading