-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (40 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "vulcan-relay"
version = "0.2.0"
authors = ["netdex"]
edition = "2021"
default-run = "vulcan-relay"
build = "build.rs"
[dependencies]
# mediasoup uses un-Send async traits so we can't schedule them with Tokio...
# maybe submit a PR upstream
mediasoup = { version = "0.9", git = "https://github.com/netdex/mediasoup", branch = "vulcan" }
log = "0.4"
env_logger = "0.9"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "0.8", features = ["serde", "v4"] }
thiserror = "1.0"
anyhow = "1.0"
clap = { version = "3.0.0-rc.11", features = ["derive"] }
bimap = "0.6.1"
derive_more = "0.99.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
async-trait = "0.1"
# warp depends on an old version of tokio-tungstenite... maybe submit a PR upstream
warp = { version = "0.3", features = ["tls"] }
# async-graphql-warp uses overly restrictive Fn rather than FnOnce for
# WebSockets connection initializer callback... maybe submit a PR upstream
async-graphql = { version = "3.0", git = "https://github.com/netdex/async-graphql" }
async-graphql-warp = { version = "3.0", git = "https://github.com/netdex/async-graphql" }
[build-dependencies]
built = { version = "0.5", features = ["git2"] }
[dev-dependencies]
graphql_client = "0.10"
graphql-ws = { version = "0.4", git = "https://github.com/Netdex/graphql-ws" }
tokio-tungstenite = { version = "0.16", features = ["rustls-tls-webpki-roots"] }
rustls = { version = "0.20", features = ["dangerous_configuration"] }
webpki = "0.22.0"
http = "0.2"