twilly 0.0.4

A *synchronous* implementation of the Twilio API in Rust built upon Reqwest and Serde
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

## twilly

`twilly` is a *synchronous* helper library bringing access to Twilio's API's via Rust. The library supports a client-based approach, instantiating a twilio client with credentials before sending & receiving requests.

```rust
let config =  TwilioConfig {
  account_sid: "AC....",
  auth_token: "auth_tok",
};
let twilio = twilly::Client::new(config);

...

let account = twilio.create_account(Some(&friendly_name))
```

Coverage is limited and the crate has been built alongside [`twilly_cli`](https://crates.io/crates/twilly_cli).