brocade 0.1.0

Interface for querying brocade.io products
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Brocade Rust
This module provides an interface for looking up products from https://www.brocade.io/

## Usage
Add this module to your dependencies
```
[dependencies]
brocade = "0.1.0"
```

Then in code, use
```
brocade::instance().get("1234567") // Get product info from barcode
```

# Design
I personally feel that reqwests is a little bloated, but it's the most popular request library and I used it.
This lib is written so that in the future a different reqwest library may be used by specifying a feature flag.