[package]
edition = "2024"
name = "ruipmi"
version = "0.3.2"
authors = ["Eric Chen <610521240@gms.ndhu.edu.tw>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An asynchronous IPMI client library implemented in Rust using Tokio."
documentation = "https://docs.rs/ruipmi"
readme = "README.md"
keywords = [
"ipmi",
"bmc",
"rmcp",
"server-management",
"async",
]
categories = [
"network-programming",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dalof41014/ruipmi"
[lib]
name = "ruipmi"
path = "src/lib.rs"
[dependencies.aes]
version = "0.8"
[dependencies.cbc]
version = "0.1"
features = ["alloc"]
[dependencies.hmac]
version = "0.12"
[dependencies.log]
version = "0.4"
[dependencies.md-5]
version = "0.10"
[dependencies.rand]
version = "0.8"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"net",
"time",
"macros",
"rt-multi-thread",
]
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.tokio]
version = "1"
features = ["full"]