twilly

Crates.iotwilly
lib.rstwilly
version0.1.0
sourcesrc
created_at2024-02-05 20:07:49.514354
updated_at2024-04-05 20:13:00.411918
descriptionA implementation of the Twilio API in Rust built upon Reqwest and Serde
homepagehttps://github.com/TristanBlackwell/twilly
repositoryhttps://github.com/TristanBlackwell/twilly
max_upload_size
id1127935
size73,383
Tristan Blackwell (TristanBlackwell)

documentation

https://docs.rs/twilly

README

twilly

twilly is a 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.

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.

Commit count: 76

cargo fmt