-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
73 lines (66 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "ad_proxy"
description = "Server Guided Ad Insertion Proxy"
repository = "https://github.com/Eyevinn/sgai-ad-proxy"
version = "1.0.0"
edition = "2021"
authors = ["Kun Wu <[email protected]>; Jonas Birmé <[email protected]>"]
exclude = ["docs/*"]
rust-version = "1.76"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# add a bin target
[[bin]]
name = "ad_proxy"
path = "src/main.rs"
[[bin]]
name = "vast_parser"
path = "src/vast_parser.rs"
[[bin]]
name = "mp4_parser"
path = "src/mp4_parser.rs"
[dependencies]
dash-mpd = "0.18.0"
hls_m3u8 = { version = "0.4.2", features = ["backtrace"] }
vast4-rs = "1.0.6"
mp4 = "0.14.0"
awc = { version = "3.5.1", features = ["rustls-0_23"] }
actix = "0.13.5"
actix-web = { version = "4.9.0", features = ["openssl"] }
actix-http = "3.9.0"
actix-cors = "0.7.0"
clap = { version = "4.5.27", features = ["derive"] }
chrono = { version = "0.4.39", features = ["serde"] }
# derive_more = "1.0.0"
dotenvy = "0.15"
env_logger = "0.11"
eyre = { version = "0.6", default-features = false, features = [
"auto-install",
"track-caller",
] }
color-eyre = "0.6"
futures-util = { version = "0.3.31", default-features = false, features = [
"std",
] }
log = "0.4"
openssl = { version = "0.10.68", features = ["v110"] }
parking_lot = "0.12"
pin-project-lite = "0.2.16"
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "stream"] }
rustls = "0.23.21"
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
time = "0.3"
tokio = { version = "1.43.0", features = ["sync", "io-util"] }
tokio-util = "0.7.13"
tokio-stream = { version = "0.1.17", features = ["sync"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1.12", features = ["v4", "v7", "serde"] }
url = "2.5.4"
json = "0.12.4"
dashmap = "6.1.0"
lazy_static = "1.5.0"
webpki-roots = "0.26"
mime = "0.3"