-
Notifications
You must be signed in to change notification settings - Fork 310
feat(iroh): add initial scaffolding for WebRTC support #3440
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
base: main
Are you sure you want to change the base?
Changes from 4 commits
fb83cc8
908eef3
676a6b3
54e9423
257bdb5
3496a19
a559b35
219915a
d4ce636
4a358f2
b87d3f8
7d4cfbd
dd02f37
b054362
829a419
f446b67
70aed13
42264d9
5aaf775
d5c14a5
b00e5ac
4540a68
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -101,6 +101,11 @@ tracing-subscriber = { version = "0.3", features = [ | |
| ], optional = true } | ||
| indicatif = { version = "0.18", features = ["tokio"], optional = true } | ||
| parse-size = { version = "=1.0.0", optional = true, features = ['std'] } # pinned version to avoid bumping msrv to 1.81 | ||
| webrtc = "0.13.0" | ||
| web-sys = "0.3.77" | ||
| wasm-bindgen = "0.2.100" | ||
| js-sys = "0.3.77" | ||
| wasm-bindgen-futures = "0.4.50" | ||
|
Comment on lines
+106
to
+109
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these needed even for non-wasm? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No |
||
|
|
||
|
|
||
| # non-wasm-in-browser dependencies | ||
|
|
@@ -130,6 +135,20 @@ wasm-bindgen-futures = "0.4" | |
| instant = { version = "0.1", features = ["wasm-bindgen"] } | ||
| time = { version = "0.3", features = ["wasm-bindgen"] } | ||
| getrandom = { version = "0.3.2", features = ["wasm_js"] } | ||
| web-sys = {version="0.3.77" , optional = true, features = [ | ||
|
|
||
| "RtcPeerConnection", | ||
| "RtcDataChannel", | ||
| "RtcConfiguration", | ||
| "RtcIceServer", | ||
| "RtcSessionDescription", | ||
| "RtcIceCandidate", | ||
| "RtcDataChannelInit", | ||
| "RtcPeerConnectionIceEvent", | ||
| "MessageEvent", | ||
|
|
||
| ]} | ||
|
|
||
|
|
||
| # target-common test/dev dependencies | ||
| [dev-dependencies] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.