-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.29 KB
/
Cargo.toml
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-subs-popout"
version = "0.5.2"
edition = "2021"
description = "Popout Mpv's Subs"
readme = "README.md"
repository = "https://github.com/sdaqo/mpv-subs-popout"
license = "GPL-3.0-only"
authors = ["sdaqo <[email protected]>"]
[package.metadata.deb]
maintainer = "sdaqo <[email protected]>"
license-file = ["LICENSE", "5"]
extended-description = """\
A little application that makes it possible to display mpv's subs anywhere you want."""
assets = [
["target/release/mpv-subs-popout", "usr/bin/", "755"],
["README.md", "usr/share/doc/mpv-subs-popout/", "644"],
["share/mpv-subs-popout.desktop", "usr/share/applications/", "755"],
["share/mpv-subs-popout.svg", "/usr/share/icons/hicolor/scalable/apps/", "644"],
["share/mpv-subs-popout.png", "/usr/share/icons/hicolor/64x64/apps/", "644"],
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mpvipc = { path = "libs/mpvipc" }
gtk = "0.17.1"
serde = "1.0.166"
home-config = { version = "0.6.0", features = ["json"] }
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde_json = "1.0.103"
strum = "0.25"
strum_macros = "0.25"
regex = "1.9.1"
open = "5.0.0"
unicode-segmentation = "1.10.1"
[build-dependencies]
glib-build-tools = "0.17.0"