Strava API client written in rust
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.
```rust extern crate strava;
use strava::AccessToken; use strava::Athlete;
fn main() { let token = AccessToken::from("155f0d914f20507733b3d150cef6328157e9dd5a"); let athlete = Athlete::get_current(&token).unwrap(); println!("{:?}", athlete); } ```
I am not in any way affiliated with Strava, Inc. I merely wish to use the Strava API from Rust.