-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 941 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 941 Bytes
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
[package]
name = "mpv-handler"
version = "0.5.0"
edition = "2021"
authors = ["kosette"]
description = "Play EMBY videos from website using MPV"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
base64 = "0.22"
dirs = "6.0"
regex = "1.10"
reqwest = { version = "0.12", features = ["json", "native-tls-alpn"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8"
url = "2.5"
uuid = { version = "1.10", features = ["v4", "fast-rng"] }
windows = { version = "0.59", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Pipes",
"Win32_Storage_FileSystem",
] }
[features]
console = [] # Enable console logging
[profile.release]
lto = true
codegen-units = 1
opt-level = "s"
debug = false
strip = true
[workspace]
members = [".", "handler-config"]