-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
55 lines (50 loc) Β· 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
authors = ["Tsiry Sandratraina <tsiry.sndr@fluentci.io>"]
categories = ["command-line-utilities"]
description = "Browse and listen to thousands of radio stations across the globe right from your terminal π π» π΅β¨"
edition = "2021"
keywords = ["radio", "api", "tokio", "web", "tunein"]
license = "MIT"
name = "tunein-cli"
readme = "README.md"
repository = "https://github.com/tsirysndr/tunein-cli"
version = "0.2.6"
[[bin]]
name = "tunein"
path = "src/main.rs"
[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libasound2-dev libasound2-dev:$CROSS_DEB_ARCH protobuf-compiler",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
clap = "3.2.20"
cpal = "0.14.0"
crossterm = "0.27.0"
derive_more = "0.99.17"
futures = "0.3.26"
futures-util = "0.3.26"
hyper = {version = "0.14.23", features = ["client", "stream", "tcp", "http1", "http2"]}
m3u = "1.0.0"
minimp3 = "0.5.1"
owo-colors = "3.5.0"
pls = "0.2.2"
prost = "0.11.8"
ratatui = "0.26.1"
reqwest = {version = "0.11.14", features = ["blocking", "rustls-tls"], default-features = false}
rodio = {version = "0.16"}
rustfft = "6.2.0"
serde = "1.0.197"
surf = {version = "2.3.2", features = ["h1-client-rustls"], default-features = false}
symphonia = {version = "0.5.1", features = ["aac", "alac", "mp3", "isomp4", "flac"]}
termion = "2.0.1"
thiserror = "1.0.58"
tokio = {version = "1.24.2", features = ["tokio-macros", "macros", "rt", "rt-multi-thread"]}
tonic = "0.8.3"
tonic-web = "0.4.0"
tunein = "0.1.2"
url = "2.3.1"
[build-dependencies]
tonic-build = "0.8"