2024-02-08 01:16:34 +08:00
|
|
|
[package]
|
|
|
|
|
name = "ncmmiao"
|
2025-09-04 17:39:59 +08:00
|
|
|
version = "2.9.20"
|
2024-02-08 01:16:34 +08:00
|
|
|
edition = "2021"
|
2024-11-17 11:51:58 +08:00
|
|
|
authors = ["Lkhsss <lkhsss1019@gmail.com>"]
|
|
|
|
|
description = "A magic tool convert ncm to flac"
|
2024-11-23 20:10:19 +08:00
|
|
|
repository = "https://github.com/lkhsss/ncmmiao"
|
2024-11-24 01:54:34 +08:00
|
|
|
license = "GPL-3.0-or-later"
|
2025-08-12 22:27:40 +08:00
|
|
|
keywords = ["ncm", "flac", "neteasemusic"]
|
2024-11-17 11:51:58 +08:00
|
|
|
|
2024-02-08 01:16:34 +08:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-03-15 16:10:11 +08:00
|
|
|
aes = { version = "0.8.4", default-features = false }
|
2025-08-12 22:27:40 +08:00
|
|
|
audiotags = { version = "0.5.0", default-features = false }
|
|
|
|
|
base64 = { version = "0.22.*" }
|
|
|
|
|
chrono = { version = "0.4.*", features = ["clock"], default-features = false }
|
|
|
|
|
clap = { version = "4.5.*", features = ["derive", "std"] }
|
|
|
|
|
colored = { version = "3.0.0", default-features = false }
|
2025-08-12 22:26:46 +08:00
|
|
|
crossbeam-channel = "0.5.15"
|
2025-08-12 22:27:40 +08:00
|
|
|
env_logger = { version = "0.11.7", default-features = false }
|
2024-08-17 22:05:34 +08:00
|
|
|
image = "0.25.*"
|
2025-09-04 17:39:59 +08:00
|
|
|
indicatif = "0.18.*"
|
2024-11-17 02:35:24 +08:00
|
|
|
lazy_static = "1.5.0"
|
2024-02-08 01:16:34 +08:00
|
|
|
log = "0.4.20"
|
2025-08-12 22:26:46 +08:00
|
|
|
num_cpus = "1.17.0"
|
2024-02-08 01:16:34 +08:00
|
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
2025-08-26 12:24:15 +08:00
|
|
|
serde_derive = "1.0.*"
|
|
|
|
|
serde_json = "1.0.*"
|
2025-09-04 17:39:59 +08:00
|
|
|
walkdir = "2.5.0"
|
2024-02-08 01:16:34 +08:00
|
|
|
|
|
|
|
|
[badges]
|
2024-08-17 22:05:34 +08:00
|
|
|
maintenance = { status = "actively-developed" }
|
2024-11-17 02:35:24 +08:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
#缩小编译后体积
|
|
|
|
|
strip = true
|
|
|
|
|
# strip = "debuginfo" #仅移除debug信息
|
2025-08-12 22:27:40 +08:00
|
|
|
lto = true #启用链接时间优化
|
2024-11-17 02:35:24 +08:00
|
|
|
panic = "abort" #panic时直接abort
|
|
|
|
|
opt-level = "z" #优化级别
|