1 unstable release
Uses old Rust 2015
0.2.0 | Dec 21, 2017 |
---|
#6 in #chef
Used in chef
52KB
1.5K
SLoC
A Chef Client API library
This library implements the raw requests and authentication methods necessary to interact with a Chef Server.
See the Chef Server API documentation for further information on the possible requests.
Connecting
You'll need a credentials file as documented in RFC 99.
To retrieve a list of cookbook names, first create an ApiClient
and then make a
request to the cookbook endpoint:
use chef_api::api_client::{ApiClient, Execute};
let client = ApiClient::from_credentials(None).unwrap();
let cookbooks = client.cookbooks().get();
This crate uses serde
to serialize requests from JSON, meaning
everything will return a serde_json::Value
.
The chef crate provides models that are easier to work with.
lib.rs
:
A Chef Client API library
This library implements the raw requests and authentication methods necessary to interact with a Chef Server.
See the Chef Server API documentation for further information on the possible requests.
Connecting
You'll need a credentials file as documented in RFC 99.
To retrieve a list of cookbook names, first create an ApiClient
and then make a
request to the cookbook endpoint:
use chef_api::api_client::{ApiClient, Execute};
let client = ApiClient::from_credentials(None).unwrap();
let cookbooks = client.cookbooks().get();
This crate uses serde
to serialize requests from JSON.
Dependencies
~18MB
~368K SLoC