[package]
edition = "2024"
name = "usboot"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal USB Boot utilities for embedded platforms"
readme = "README.md"
license = "MIT"
repository = "https://github.com/itviewer/usboot"
[lib]
name = "usboot"
path = "src/lib.rs"
[[bin]]
name = "boot-g12"
path = "src/bin/boot-g12.rs"
[[bin]]
name = "boot-gx"
path = "src/bin/boot-gx.rs"
[[test]]
name = "amlogic"
path = "tests/amlogic.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.env_logger]
version = "0.11.10"
[dependencies.log]
version = "0.4.29"
[dependencies.nusb]
version = "0.2.3"
features = ["tokio"]
[dependencies.rust-embed]
version = "8.11.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"time",
"rt",
"rt-multi-thread",
"macros",
]