Files
yup-oauth2/Cargo.toml
Martell Malone fe0a094b45 fix(openssl): Update to 0.9.x
This also updates hyper to 0.10.x because it uses openssl
2017-01-26 10:56:47 +00:00

37 lines
917 B
TOML

[package]
name = "yup-oauth2"
version = "1.0.2"
authors = ["Sebastian Thiel <byronimo@gmail.com>", "Lewin Bormann <lbo@spheniscida.de>"]
repository = "https://github.com/dermesser/yup-oauth2"
description = "An oauth2 implementation, providing the 'device', 'service account' and 'installed' authorization flows"
documentation = "https://docs.rs/yup-oauth2/"
keywords = ["google", "oauth", "v2"]
license = "MIT OR Apache-2.0"
build = "src/build.rs"
[dependencies]
base64 = "0.2"
chrono = "0.2"
hyper = "0.10.2"
itertools = "0.4"
log = "0.3"
openssl = "0.9.6"
serde = "0.8"
serde_json = "0.8"
serde_derive = { version = "0.8", optional = true }
url = "0.5"
[features]
default = ["with-serde-codegen"]
nightly = ["serde_derive"]
with-serde-codegen = ["serde_codegen"]
[build-dependencies]
serde_codegen = { version = "^ 0.8", optional = true }
[dev-dependencies]
getopts = "0.2"
open = "1.1"
yup-hyper-mock = "1.3"