This commit is contained in:
mofeng-git
2025-12-28 18:19:16 +08:00
commit d143d158e4
771 changed files with 220548 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
[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