Files
One-KVM/libs/ventoy-img-rs/Cargo.toml
2026-07-18 11:50:26 +08:00

21 lines
370 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-2.0"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Error handling
thiserror = "2"
tempfile = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true