twitter-api 0.2.0

Unofficial Rust library for the Twitter API.
docs.rs failed to build twitter-api-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: twitter-api-0.6.1

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.