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>"]
15 clap = { version = "4.5.2", features = ["derive"] }
16 percent-encoding = "2.3.1"
17 reqwest = { version = "0.11", features = ["json"] }
19 serde = { version = "1.0.197", features = ["derive"] }
20 serde_json = "1.0.114"
21 tokio = { version = "1", features = ["full"] }
23 [target.'cfg(target_os = "macos")'.dependencies]
29 [target.'cfg(target_os = "linux")'.dependencies]
37 [package.metadata.generate-rpm]
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" },
43 [package.metadata.deb]
45 ["target/release/lrc", "/usr/bin/lrc", "755" ],
46 ["man/lrc.1", "/usr/share/man/man1/lrc.1", "644" ],