-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
51 lines (39 loc) · 1.35 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
[package]
name = "rustplayer"
version = "1.1.2"
edition = "2021"
description = "Music/Radio Player built by Rust"
authors = ["KetaNetwork"]
# 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.25.0"
rodio = { version = "0.17", 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", 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 = "cc.ketanetwork.rustplayer"
# icon = ["32x32.png", "128x128.png", "[email protected]"]
version = "1.1.2"
# resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "Copyright (c) KetaNetwork 2023. All rights reserved."
category = "Music"
short_description = "Music/Radio Player built by Rust."
long_description = """
Music/Radio Player built by Rust.
"""
deb_depends = ["libasound2", "libavcodec57 | libavcodec58", "libavformat57 | libavformat58", "libswresample2 | libswresample3"]
osx_minimum_system_version = "10.15"
[profile]
release = { strip = "symbols", lto = "thin", opt-level = "z" }