[package]
edition = "2024"
name = "libredfish2"
version = "0.3.0"
authors = ["Nathanael G. Reese <nathanaelreese@acm.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A continuation of libredfish, a library to interface with Redfish endpoints."
documentation = "https://docs.rs/libredfish2"
readme = "README.md"
keywords = [
"redfish",
"http",
"LOM",
]
categories = ["hardware-support"]
license = "MIT"
repository = "https://gitlab.com/ngreese/libredfish2"
[features]
async = []
blocking = ["reqwest/blocking"]
default = ["blocking"]
[lib]
name = "libredfish2"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"