-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (43 loc) · 1.02 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
[package]
name = "comyfcast-server"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
publish = false
[profile.release]
lto = true
codegen-units = 1
strip = true
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["http2", "macros", "ws"] }
bytes = "1.9.0"
fancy-ffmpeg = { version = "0.0.1", features = ["tokio"] }
futures = "0.3.31"
gstreamer = { version = "0.23.4", features = ["log"] }
itertools = "0.14.0"
lru = "0.12.5"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = [
"rt-multi-thread",
"macros",
"process",
"fs",
] }
tokio-stream = "0.1.17"
tower = "0.5.2"
tower-http = { version = "0.6.2", features = [
"compression-full",
"cors",
"decompression-full",
"fs",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"tracing-log",
] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
[patch.crates-io]
fancy-ffmpeg = { path = "../fancy-ffmpeg" }