twitter-api 0.1.0

Unofficial Rust library for the Twitter API.
Documentation

twitter-api-rs Build Status Coverage Status

Unofficial Rust library for the Twitter API.

This library allows you to:

  • get your timeline,
  • update your timeline.

This library uses the rust-oauth library (please to see oauth-client).

Documentation

How to use?

Add this to your Cargo.toml:

[dependencies]
twitter-api = "*"

and this to your crate root:

extern crate twitter_api;

See examples.