forked from TheCactusVert/mpv-sponsorblock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.19 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
[package]
name = "mpv-sponsorblock"
version = "2.2.0"
edition = "2021"
authors = ["Kevin Gavrois <kevin@gavrois.fr>"]
description = "MPV plugin that allow you to skip sponsors while watching YouTube videos"
repository = "https://github.com/TheCactusVert/mpv-sponsorblock"
keywords = ["mpv", "libmpv", "sponsorblock"]
[lib]
name = "mpv_sponsorblock"
crate-type = ["cdylib"] # Creates dynamic lib
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-channel = "2.3.1"
dirs = "5.0.1"
env_logger = "0.11.5"
log = "0.4.22"
mpv-client = "1.0.1"
#mpv-client = { path = "../mpv-client/mpv-client" }
#mpv-client = { git = "https://github.com/TheCactusVert/mpv-client.git", branch = "bindgen" }
regex = "1.10.6"
serde = "1.0.209"
serde_derive = "1.0.209"
sponsorblock-client = { git = "https://github.com/TheCactusVert/sponsorblock-client.git" }
#sponsorblock-client = { path = "../sponsorblock-client" }
tokio = { version = "1.39.3", features = ["rt-multi-thread", "macros"] }
toml = "0.8.19"
url = { version = "2.5.2", features = ["serde"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.
codegen-units = 1
panic = "abort"