-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (48 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
50 lines (48 loc) · 1.38 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
[package]
name = "simple-media-server"
version = "0.4.0"
edition = "2024"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
futures-util = "0.3"
hyper = { version = "1.0", features = ["http1", "http2", "server"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
tokio-rustls = "0.26"
rustls-pemfile = "2.0"
rcgen = "0.14"
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["fs"] }
http = "1.0"
http-body-util = "0.1"
headers = "0.4"
bytes = "1.0"
mime = "0.3"
mime_guess = "2.0"
jsonwebtoken = { version = "10.0", features = ["aws_lc_rs"] }
figment = { version = "0.10", features = ["yaml", "env"] }
anyhow = "1.0"
argh = "0.1"
ffmpeg-next = "7.0"
ffmpeg-sys-next = "7.0"
mp4ameta = "0.13"
matroska = "0.30"
image = { version = "^0.25", default-features = false }
turbojpeg = { version = "1.0", features = ["image"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
blake3 = "1.0"
argon2 = "0.5"
hex = "0.4"
rand = "0.10"
rand_chacha = "0.10"
natord = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
percent-encoding = "2.3.1"
scopeguard = "1.0"
hashlink = "0.11"
time = { version = "0.3", features = ["macros", "serde-human-readable", "parsing"] }
relative-path = { version = "2.0", features = ["serde"] }
[dev-dependencies]
tempfile = "3.0"