-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Cargo.toml
37 lines (30 loc) · 884 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 = "vortex"
description = "Vortex is a Rust WebRTC server using mediasoup, acting as a beta audio/voice relay for Revolt"
version = "0.3.1"
authors = ["Martin Loffler <[email protected]>"]
edition = "2018"
repository = "https://gitlab.insrt.uk/revolt/vortex"
license = "AGPL-3.0-or-later"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Environment, logging
dotenv = "0.15.0"
log = "0.4.14"
env_logger = "0.9.0"
lazy_static = "1.4.0"
# Miscellaneous
rand = "0.8.3"
base64 = "0.13.0"
once_cell = "1.7.2"
# Futures, HTTP
futures = "0.3.14"
tokio = { version = "1.4.0", features = ["full"] }
warp = "0.3.1"
# Serialization, errors
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.23", features = ["derive"] }
# RTC
mediasoup = "0.15.0"