-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (39 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
51 lines (39 loc) · 1.25 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
42
43
44
45
46
47
48
49
50
51
[package]
name = "rustplayer"
version = "1.1.4"
edition = "2021"
description = "Music/Radio Player built by Rust"
authors = ["Kingtous"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
tui = "0.19.0"
crossterm = "0.29.0"
rodio = { version = "0.21", features = ["mp3", "wav", "flac"] }
mp3-duration = "0.1.10"
failure = "0.1.8"
open = "2.1.0"
regex = "1.5.4"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.47", features = ["full"] }
m3u8-rs = "3.0.0"
dirs = "4.0.0"
bytes = "1.1.0"
ffmpeg-decoder = {features = ["rodio_source"], path = "thirdparty/ffmpeg-decoder-rs"}
lazy_static = "1.4.0"
[package.metadata.bundle]
name = "RustPlayer"
identifier = "com.kingtous.rustplayer"
# icon = ["32x32.png", "128x128.png", "128x128@2x.png"]
version = "1.1.4"
# resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "Copyright (c) kingtous 2025. All rights reserved."
category = "Music"
short_description = "Music/Radio Player built by Rust."
long_description = """
Music/Radio Player built by Rust.
"""
deb_depends = ["libasound2"]
osx_minimum_system_version = "12.0"
[profile]
release = { strip = "symbols", lto = "thin", opt-level = "z" }