-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 922 Bytes
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
[package]
name = "rise-framework"
authors = ["Sen Lin <sen.lin@u.northwestern.edu>", "Andre Chen", "Kevin Zhikai Chen"]
version = "1.0.0"
edition = "2021"
license = "MIT"
[[bin]]
name = "rise"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
bytes = { version = "1.0", features = ["serde"] }
ffmpeg-next = "7.1.0"
y4m = "0.8"
anyhow = "1.0"
sdl2 = "0.37.0"
crossbeam-channel = "0.5"
clap = { version = "4.5", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3"
rand = "0.9"
rayon = "1.10.0"
quinn = { path = "crates/quinn/quinn" }
proto = { package = "quinn-proto",path = "crates/quinn/quinn-proto" }
rustls = { version = "0.23.15", default-features = false, features = ["std"] }
rcgen = "0.13.1"
tokio-rustls = "0.26.0"
strum = "0.27"
strum_macros = "0.27"
atomic_float = "1.1.0"
parking_lot = "0.12.3"