mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 00:51:53 +08:00
init
This commit is contained in:
28
libs/ventoy-img-rs/Cargo.toml
Normal file
28
libs/ventoy-img-rs/Cargo.toml
Normal 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
|
||||
Reference in New Issue
Block a user