Files
yup-oauth2/Cargo.toml
Sebastian Thiel 9b2f9e77be feat(syntex): basic infrastructure
It doesn't yet work on nightly due to a panic in
https://goo.gl/RyM4GT

Might have something to do with me being on nightly,
and some cargo-related hickoup.
2015-05-26 14:41:31 +02:00

37 lines
831 B
TOML

[package]
name = "yup-oauth2"
version = "0.4.5"
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"
build = "build.rs"
[dependencies]
chrono = "*"
time = "*"
log = "*"
mime = "*"
url = "*"
hyper = ">= 0.5.0"
itertools = "*"
serde = "*"
serde_macros = { version = "*", optional = true }
[features]
default = ["with_syntex"]
nightly = ["serde_macros"]
with_syntex = ["serde_codegen", "syntex"]
[build-dependencies]
syntex = { version = "*", optional = true }
serde_codegen = { version = "*", optional = true }
[dev-dependencies]
getopts = "*"
open = "*"
yup-hyper-mock = ">= 1.0.0"