mirror of
https://github.com/OMGeeky/yup-oauth2.git
synced 2025-12-31 08:30:05 +01:00
38 lines
859 B
TOML
38 lines
859 B
TOML
[package]
|
|
|
|
name = "yup-oauth2"
|
|
version = "0.5.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"
|
|
build = "src/build.rs"
|
|
|
|
[dependencies]
|
|
chrono = "*"
|
|
time = "*"
|
|
log = "*"
|
|
mime = "*"
|
|
url = "*"
|
|
hyper = ">= 0.5.0"
|
|
itertools = "*"
|
|
serde = ">= 0.5.0"
|
|
serde_json = "*"
|
|
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"
|