Files
hby/Cargo.toml
2025-09-01 20:24:30 +08:00

19 lines
407 B
TOML

[package]
name = "hby"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
num-bigint = "0.4.6"
sled = "0.34.7"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
[profile.release]
#缩小编译后体积
strip = true
# strip = "debuginfo" #仅移除debug信息
lto = true #启用链接时间优化
panic = "abort" #panic时直接abort
opt-level = "z" #优化级别