Files
yup-oauth2/Cargo.toml
Sebastian Thiel b08b239e88 fix(json): assure we understand json errors
We would actually fail to decode an error, and then assume it's a valid
result, unwrapping another failed attempt to decode the json string
returned by the server.

Cause seems to be that the json error structure now conains an
additional field, 'error_uri'.

* we removed a debug printing ... .
* incremented version
2015-05-01 19:39:57 +02:00

27 lines
550 B
TOML

[package]
name = "yup-oauth2"
version = "0.4.2"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
repository = "https://github.com/Byron/yup-oauth2"
description = "A partial oauth2 implementation, providing the 'device' authorization flow"
documentation = "http://byron.github.io/yup-oauth2"
keywords = ["google", "oauth", "v2"]
license = "MIT"
[dependencies]
chrono = "*"
time = "*"
hyper = "*"
log = "*"
mime = "*"
url = "*"
itertools = "*"
serde = "*"
serde_macros = "*"
[dev-dependencies]
getopts = "*"
yup-hyper-mock = ">= 0.1.4"
open = "*"