libredfish2
Introduction
This library crate is a continuation of the work that the contributers of libredfish started.
The initial version was a fork of their repository and all content that is equivalent is attributed to them.
This library serves as an interface to DTMF's Redfish standard for enterprise hardware.
Redfish
All content of this library follows the Redfish Specification, detailed at their website
Features
There are two features in this crate:
- blocking - All requests to a Redfish endpoint use the
reqwest::blocking::Clientstruct. Use this if you want to perform one request at a time. This is the default feature. - async - Enables asynchronous requests to Redfish endpoints. Uses the regular
reqwest::Clientto perform requests.