-
Notifications
You must be signed in to change notification settings - Fork 1k
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(webrtc): promote to stable release #5854
base: master
Are you sure you want to change the base?
Conversation
@@ -119,6 +121,7 @@ libp2p-relay = { workspace = true, optional = true } | |||
libp2p-rendezvous = { workspace = true, optional = true } | |||
libp2p-request-response = { workspace = true, optional = true } | |||
libp2p-swarm = { workspace = true } | |||
libp2p-webrtc = { workspace = true, optional = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we move this under [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
?
#[cfg(feature = "webrtc")] | ||
#[doc(inline)] | ||
pub use libp2p_webrtc as webrtc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#[cfg(feature = "webrtc")] | |
#[doc(inline)] | |
pub use libp2p_webrtc as webrtc; | |
#[cfg(feature = "webrtc")] | |
#[cfg(not(target_arch = "wasm32"))] | |
#[doc(inline)] | |
pub use libp2p_webrtc as webrtc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Elena, thanks for this! The thing is, I wonder if we can call it stable as the history we have with webrtc-rs
and namely the upgrade to 0.11
shows. Nonetheless wdyt of merging it first before this Elena?
Description
v0.9.0
oflibp2p-webrtc
.libp2p-webrtc
aslibp2p::webrtc
.Notes & open questions
Discussed in #5819 (review).
Change checklist
I have added tests that prove my fix is effective or that my feature works