strava 0.0.2

Strava API v3 Client
docs.rs failed to build strava-0.0.2
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: strava-0.2.0

strava-rs

Strava API client written in rust

About

This library is highly incomplete. At this point in time, you are able to fetch the athlete associated with an auth token. Docs will be arriving soon.

extern crate strava;

use strava::AccessToken;
use strava::Athlete;

fn main() {
    let token = AccessToken::from("<replace me>");
    let athlete = Athlete::get_current(&token).unwrap();
    println!("{:?}", athlete);
}

Disclaimer

I am not in any way affiliated with Strava, Inc. I merely wish to use the Strava API from Rust.