-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (48 loc) · 1.32 KB
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
[package]
name = "ritcher"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "High-performance HLS & DASH SSAI/SGAI ad insertion stitcher"
repository = "https://github.com/JoeldelPilar/ritcher"
[features]
default = []
valkey = ["redis"]
[dependencies]
axum = "0.8.6"
tokio = { version = "1.42.0", features = ["full"] }
m3u8-rs = "6.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.141"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
reqwest = { version = "0.12.13", features = ["json", "stream"] }
url = "2"
async-trait = "0.1"
thiserror = "2.0"
dashmap = "6.1"
tower-http = { version = "0.6", features = ["cors"] }
quick-xml = "0.37"
dash-mpd = { version = "0.17", default-features = false }
metrics = "0.24"
metrics-exporter-prometheus = "0.16"
chrono = "0.4"
redis = { version = "0.29", features = ["tokio-comp", "connection-manager"], optional = true }
hickory-resolver = "0.25"
futures-util = "0.3"
tokio-util = { version = "0.7", features = ["rt"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
wiremock = "0.6"
m3u8-rs = "6.0"
[lints.clippy]
print_stdout = "deny"
print_stderr = "deny"
[[bench]]
name = "manifest_pipeline"
harness = false
[[bench]]
name = "vast_parsing"
harness = false