mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-28 16:41:52 +08:00
29 lines
466 B
TOML
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
|