mirror of
https://github.com/OMGeeky/yup-oauth2.git
synced 2026-01-07 03:31:31 +01:00
This bumps rustls to 0.6.1 which bumps webpki-roots. We need this because the current version of webpki 0.8.0 has been removed from crates.io. I created the 0.6.x rustls for hyper 0.10 support. In future we should upade to hyper 0.11 which is rusls 0.8.0+
29 lines
701 B
TOML
29 lines
701 B
TOML
[package]
|
|
|
|
name = "yup-oauth2"
|
|
version = "1.0.5"
|
|
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"
|
|
|
|
[dependencies]
|
|
base64 = "0.5.2"
|
|
chrono = "0.2"
|
|
hyper = "0.10.2"
|
|
hyper-rustls = "0.6.1"
|
|
itertools = "0.4"
|
|
log = "0.3"
|
|
openssl = "0.9.11"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
url = "0.5"
|
|
|
|
[dev-dependencies]
|
|
getopts = "0.2"
|
|
open = "1.1"
|
|
yup-hyper-mock = "2.0"
|