Skip to content

Commit

Permalink
cargo: Enable all features by default
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandru Vasile <[email protected]>
  • Loading branch information
lexnv committed Aug 14, 2024
1 parent aa18af8 commit 59e194f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,19 @@ tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
futures_ringbuf = "0.4.0"

[features]
custom_sc_network = []
# Enable all transports by default.
default = ["websocket", "quic", "webrtc"]

# Enable QUIC support.
quic = ["dep:webpki", "dep:quinn"]
# Enable WebRTC support.
webrtc = ["dep:str0m"]
# Enable WebSocket support.
websocket = ["dep:tokio-tungstenite"]

# Testing feature.
custom_sc_network = []

[profile.release]
debug = true

Expand Down

0 comments on commit 59e194f

Please sign in to comment.