-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 1.17 KB
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 = "code-radio-cli"
description = "A command line music radio client for https://coderadio.freecodecamp.org"
version = "1.0.6"
authors = ["Jason Wei"]
edition = "2021"
readme = "README.md"
homepage = "https://github.com/JasonWei512/code-radio-cli"
repository = "https://github.com/JasonWei512/code-radio-cli"
keywords = ["cli", "music", "freecodecamp", "code-radio"]
categories = ["command-line-utilities"]
license = "MIT"
[[bin]]
name = "code-radio"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.48.0", features = ["full"] }
anyhow = "1.0.100"
once_cell = "1.21.3"
futures-util = "0.3.31"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
rodio = "0.20.1"
reqwest = { version = "0.12.26", features = ["blocking", "json"] }
minimp3 = "0.6.1"
clap = { version = "3.2.25", features = ["derive"] }
indicatif = "0.18.3"
console = "0.16.2"
colored = "3.0.0"
version-compare = "0.2.1"
inquire = { version = "0.9.1", default-features = false, features = ["console"] }
eventsource-client = "0.16.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.178"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html