Files
yup-oauth2/Cargo.toml
Sebastian Thiel 59bbde3be4 chore(version-up): v0.5.3
Versions were chosen to allow for maximum flexibility
for users of this library, even if this breaks at compile time
thanks to incompatibilities in dependencies.

Rather that, than cargo claiming that it cannot use
a certain version.

Of course, once everything is >= 1.0, one can change to
standard semver compatiblity.
2015-12-24 15:12:24 +01:00

38 lines
908 B
TOML

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