]> git.r.bdr.sh - rbdr/lyricli/blob - Cargo.toml
Add linux config
[rbdr/lyricli] / Cargo.toml
1 [package]
2 name = "lyricli"
3 version = "3.0.0"
4 edition = "2021"
5 license = "AGPL-3.0-or-later"
6 description = "Lyricli (lrc), is a command line tool to print lyrics in your terminal."
7 homepage = "https://r.bdr.sh/lyricli.html"
8 authors = ["Rubén Beltrán del Río <lyricli@r.bdr.sh>"]
9
10 [[bin]]
11 name = "lrc"
12 path = "src/main.rs"
13
14 [dependencies]
15 clap = { version = "4.5.2", features = ["derive"] }
16 percent-encoding = "2.3.1"
17 reqwest = { version = "0.11", features = ["json"] }
18 scraper = "0.19.0"
19 serde = { version = "1.0.197", features = ["derive"] }
20 serde_json = "1.0.114"
21 tokio = { version = "1", features = ["full"] }
22
23 [target.'cfg(target_os = "macos")'.dependencies]
24 libc = "0.2.153"
25 objc = "0.2.7"
26 cocoa = "0.25.0"
27 objc_id = "0.1.1"
28
29 [target.'cfg(target_os = "linux")'.dependencies]
30 mpris = "2.0.1"
31
32 [profile.release]
33 strip = true
34 lto = true
35 panic = "abort"
36
37 [package.metadata.generate-rpm]
38 assets = [
39 { source = "target/release/lrc", dest = "/usr/bin/lrc", mode = "755" },
40 { source = "man/lrc.1", dest = "/usr/share/man/man1/lrc.1", mode = "644" },
41 ]
42
43 [package.metadata.deb]
44 assets = [
45 ["target/release/lrc", "/usr/bin/lrc", "755" ],
46 ["man/lrc.1", "/usr/share/man/man1/lrc.1", "644" ],
47 ]