-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
61 lines (57 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "srt_whep"
description = "SRT to WHEP (WebRTC)"
repository = "https://github.com/Eyevinn/srt-whep"
license = "Apache-2.0"
version = "1.2.8"
authors = ["Kun Wu <[email protected]>; Jonas Birmé <[email protected]>"]
edition = "2021"
exclude = ["docs/*"]
rust-version = "1.84"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "srt-whep"
[dependencies]
derive_more = { version = "1.0.0", features = ["debug", "display"] }
actix-web = "4"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
serde = "1.0.217"
config = { version = "0.15", default-features = false, features = ["yaml"] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4.39", default-features = false, features = ["clock"] }
reqwest = { version = "0.12.12", default-features = false, features = [
"json",
"rustls-tls",
] }
log = "0.4"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
thiserror = "2.0.11"
serde-aux = "4"
unicode-segmentation = "1.12.0"
anyhow = "1.0.95"
validator = "0.19.0"
tracing-actix-web = "0.7"
secrecy = { version = "0.10", features = ["serde"] }
futures = "0.3.31"
glib = "0.20.7"
gstreamer = "0.23.4"
gstreamer-pbutils = "0.23.4"
gst-plugin-webrtc = "0.13.4"
gst-plugin-rtp = "0.13.4"
clap = { version = "4.5.27", features = ["derive"] }
actix-cors = "0.7.0"
serde_json = "1.0.137"
toml = "0.8.19"
timed-locks = "0.1.1"
async-trait = "0.1.85"
tokio-async-drop = "0.1.0"
event-listener = "5.4.0"
[dev-dependencies]
once_cell = "1.20.2"
claims = "0.8.0"
reqwest = { version = "0.12.12", features = ["json"] }