[package]
edition = "2024"
name = "uboot-shell"
version = "0.2.3"
authors = ["周睿 <zrufo747@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A crate for communicating with u-boot"
readme = "README.md"
keywords = [
"u-boot",
"shell",
"embedded",
"serial",
"ymodem",
]
categories = [
"os",
"embedded",
"development-tools",
]
license = "MIT"
repository = "https://github.com/drivercraft/ostool"
[lib]
name = "uboot_shell"
path = "src/lib.rs"
[[example]]
name = "env_var"
path = "examples/env_var.rs"
[[example]]
name = "loady"
path = "examples/loady.rs"
[[example]]
name = "loady_real"
path = "examples/loady_real.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.colored]
version = "3"
[dependencies.futures]
version = "0.3"
[dependencies.futures-timer]
version = "3"
[dependencies.log]
version = "0.4"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.indicatif]
version = "0.18"
[dev-dependencies.ntest]
version = "0.9"
[dev-dependencies.serialport]
version = "4.6"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"full",
]
[dev-dependencies.tokio-serial]
version = "5.4"
[dev-dependencies.tokio-util]
version = "0.7"
features = ["compat"]