-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.16 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
[package]
name = "streamrr"
version = "0.3.2"
authors = ["Dolby Laboratories, Inc."]
edition = "2024"
description = "Record and replay HLS streams."
license = "BSD-3-Clause-Clear"
repository = "https://github.com/THEOplayer/streamrr"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
m3u8-rs = "6.0.0"
url = "2.5.8"
reqwest = { version = "0.13.2", features = ["rustls", "stream", "socks", "cookies"], default-features = false }
clap = { version = "4.6.0", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "signal"] }
tokio-util = { version = "0.7.18", features = ["io"] }
futures = "0.3.32"
warp = { version = "0.4.2", features = ["server"] }
chrono = "0.4.44"
anyhow = "1.0.102"
indexmap = { version = "2.13.0", features = ["serde"] }
sha1 = "0.10.6"
thiserror = "2.0.18"
[dev-dependencies]
insta = "1.46.3"
# Enable 'dist' even though publish = false
[package.metadata.dist]
dist = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"