Files
ncmmiao/Cargo.toml

41 lines
985 B
TOML
Raw Normal View History

[package]
name = "ncmmiao"
2024-11-17 11:51:58 +08:00
version = "2.3.7"
edition = "2021"
2024-11-17 11:51:58 +08:00
authors = ["Lkhsss <lkhsss1019@gmail.com>"]
description = "A magic tool convert ncm to flac"
repository = "https://github.com/ncmmiao/ncmmiao"
license = "MIT"
keys = ["ncm","flac","neteasemusic"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.3"
2024-11-17 02:35:24 +08:00
audiotags = "0.5.0"
base64 = "0.22.*"
2024-11-17 02:35:24 +08:00
chrono = "0.4.38"
clap = { version = "4.5.9", features = ["derive"] }
colored = "2.1.0"
env_logger = "0.11.1"
hex = "0.4.3"
image = "0.25.*"
2024-11-17 02:35:24 +08:00
lazy_static = "1.5.0"
log = "0.4.20"
serde = { version = "1.0.195", features = ["derive"] }
serde_derive = "1.0.195"
serde_json = "1.0.111"
walkdir = "2.4.0"
[badges]
maintenance = { status = "actively-developed" }
2024-11-17 02:35:24 +08:00
[profile.release]
#缩小编译后体积
strip = true
# strip = "debuginfo" #仅移除debug信息
lto = true #启用链接时间优化
panic = "abort" #panic时直接abort
opt-level = "z" #优化级别