Files
One-KVM/libs/ventoy-img-rs/Cargo.toml
mofeng-git d143d158e4 init
2025-12-28 18:19:16 +08:00

29 lines
466 B
TOML

[package]
name = "ventoy-img"
version = "0.1.0"
edition = "2021"
description = "Create and manage Ventoy bootable IMG files without root or loop devices"
license = "GPL-3.0"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Error handling
thiserror = "1"
# Time handling
chrono = "0.4"
# CRC32 for exFAT checksum
crc32fast = "1"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true