-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (29 loc) · 959 Bytes
/
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
[package]
authors = ["Marcos Gutiérrez Alonso <[email protected]>"]
description = "A simple radio cli for listening to your favourite streams from the console"
name = "radio-cli"
version = "2.3.1"
edition = "2021"
homepage = "https://github.com/margual56/radio-cli"
repository = "https://github.com/margual56/radio-cli"
license = "GPL2"
[package.metadata]
depends = ["mpv"]
optdepends = ["youtube-dl"]
[dependencies]
clap = { version = "^4", features = ["derive", "clap_derive"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0", default-features = false, features = [
"alloc",
] }
colored = "^2"
xdg = "^2.5" # https://docs.rs/xdg/latest/xdg/struct.BaseDirectories.html
inquire = "^0"
reqwest = { version = "^0", features = ["blocking", "json"] }
radiobrowser = { version = "^0", features = ["blocking"] }
clap-verbosity-flag = "^2"
env_logger = "^0"
log = "^0"
[lib]
path = "src/lib/lib.rs"
name = "radio_libs"