-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 889 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "wasm_p2p"
version = "0.1.3"
edition = "2021"
description = "Simple peer-to-peer library for Rust + WASM, built on top of WebRTC"
license = "MIT"
repository = "https://github.com/luis-herasme/wasm_p2p/"
[lib]
name = "wasm_p2p"
path = "src/lib.rs"
[dependencies]
console_error_panic_hook = "0.1.7"
serde = { version = "1.0.203", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.120"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4.42"
web-sys = { version = "0.3.69", features = [
"Window",
"Document",
"HtmlElement",
"Text",
"WebSocket",
"MessageEvent",
"RtcPeerConnection",
"RtcIceGatheringState",
"RtcDataChannel",
"RtcSessionDescriptionInit",
"RtcSdpType",
"RtcSessionDescription",
"RtcDataChannelState",
"RtcPeerConnectionState",
"RtcDataChannelEvent",
"RtcConfiguration",
] }