Skip to content

Commit

Permalink
fix(rustup): update to latest rustc
Browse files Browse the repository at this point in the history
rustc 1.0.0-nightly (3e4be02b8 2015-03-13) (built 2015-03-13)
  • Loading branch information
Byron committed Mar 15, 2015
1 parent bddf5d9 commit 3d1678d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "yup-oauth2"
version = "0.2.2"
version = "0.2.3"
authors = ["Sebastian Thiel <[email protected]>"]
repository = "https://github.com/Byron/yup-oauth2"
description = "A partial oauth2 implementation, providing the 'device' authorization flow"
Expand Down
3 changes: 2 additions & 1 deletion examples/auth.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(env, collections, old_io, std_misc)]
#![feature(collections, old_io, std_misc, exit_status)]
#![allow(deprecated)]
extern crate "yup-oauth2" as oauth2;
extern crate "yup-hyper-mock" as mock;
extern crate hyper;
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(io, old_io, std_misc, core, hash)]
#![feature(old_io, std_misc, core, hash)]
#![allow(deprecated)]
//! This library can be used to acquire oauth2.0 authentication for services.
//! At the time of writing, only one way of doing so is implemented, the [device flow](https://developers.google.com/youtube/v3/guides/authentication#devices), along with a flow
//! for [refreshing tokens](https://developers.google.com/youtube/v3/guides/authentication#devices)
Expand Down

0 comments on commit 3d1678d

Please sign in to comment.