Files
yup-oauth2/Cargo.toml
Sebastian Thiel 2aa95c0500 fix(serde): go back to serde 0.6 (#18)
That way, google-apis-rs can compile once again.
If not done, yup-oauth ends up being compiled with
an older serde (the one of google-apis-rs, it seems), even
though its code was generated by a possibly newer serde.

Signed-off-by: Sebastian Thiel <sthiel@thoughtworks.com>
2016-04-10 13:10:40 +02:00

37 lines
905 B
TOML

[package]
name = "yup-oauth2"
version = "0.5.6"
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 OR Apache-2.0"
build = "src/build.rs"
[dependencies]
chrono = ">= 0.2"
log = ">= 0.3"
mime = ">= 0.1"
url = ">= 0.5"
hyper = ">= 0.8.0"
itertools = ">= 0.4"
serde = "0.6.0"
serde_json = "0.6.0"
serde_macros = { version = "0.6.0", optional = true }
[features]
default = ["with_syntex"]
nightly = ["serde_macros"]
with_syntex = ["serde_codegen", "syntex"]
[build-dependencies]
syntex = { version = "=0.28.0", optional = true }
serde_codegen = { version = "=0.6.13", optional = true }
[dev-dependencies]
getopts = "0.2"
open = "1.1"
yup-hyper-mock = "1.3.0"