Skip to content

Commit

Permalink
fix(common): remove obsolete marker trait
Browse files Browse the repository at this point in the history
... and version-up right away :).
  • Loading branch information
Byron committed Apr 26, 2015
1 parent 690bcdb commit 2a1247b
Show file tree
Hide file tree
Showing 2 changed files with 2 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.3.7"
version = "0.3.8"
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: 1 addition & 2 deletions src/common.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
use chrono::{DateTime, UTC, TimeZone};
use std::marker::MarkerTrait;
use std::fmt;
use std::str::FromStr;
use hyper;

/// A marker trait for all Flows
pub trait Flow : MarkerTrait {
pub trait Flow {
fn type_id() -> FlowType;
}

Expand Down

0 comments on commit 2a1247b

Please sign in to comment.