fix(common): remove obsolete marker trait

... and version-up right away :).
This commit is contained in:
Sebastian Thiel
2015-04-26 20:50:27 +02:00
parent 690bcdb627
commit 2a1247bae0
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "yup-oauth2"
version = "0.3.7"
version = "0.3.8"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
repository = "https://github.com/Byron/yup-oauth2"
description = "A partial oauth2 implementation, providing the 'device' authorization flow"

View File

@@ -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;
}