From 2a1247bae0b7a5fd0195b8dca8cda2a2cf1b2132 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 26 Apr 2015 20:50:27 +0200 Subject: [PATCH] fix(common): remove obsolete marker trait ... and version-up right away :). --- Cargo.toml | 2 +- src/common.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d0379f76a..4b495192e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yup-oauth2" -version = "0.3.7" +version = "0.3.8" authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/yup-oauth2" description = "A partial oauth2 implementation, providing the 'device' authorization flow" diff --git a/src/common.rs b/src/common.rs index aad9f4c03..f3e89c15a 100644 --- a/src/common.rs +++ b/src/common.rs @@ -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; }