-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
37 lines (34 loc) · 1.04 KB
/
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 = "webrtc-unreliable"
version = "0.6.0"
authors = ["kyren <[email protected]>"]
edition = "2018"
description = "UDP-like (unreliable, unordered) communication between Javascript/WebAssembly and native Rust via WebRTC"
repository = "https://github.com/kyren/webrtc-unreliable"
documentation = "https://docs.rs/webrtc-unreliable"
readme = "README.md"
keywords = ["wasm", "webrtc"]
license = "MIT"
[dependencies]
byteorder = "1.3"
crc = "3.0"
futures-channel = { version = "0.3", features = ["sink"] }
futures-core = { version = "0.3" }
futures-util = { version = "0.3", features = ["sink"] }
http = "1.0"
log = "0.4"
openssl = "0.10"
pin-project = "1.0"
rand = "0.8"
tokio = { version = "1.0", features = ["net"], optional = true }
[dev-dependencies]
clap = "3.0"
env_logger = "0.9"
futures = { version = "0.3" }
hyper = { version = "1.0", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
tokio = { version = "1.0", features = ["full"] }
[[example]]
name = "echo-server"
required-features = ["tokio"]