Files
yup-oauth2/Cargo.toml
2020-04-29 18:16:07 +02:00

36 lines
992 B
TOML

[package]
name = "yup-oauth2"
version = "4.1.1"
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"
edition = "2018"
[dependencies]
base64 = "0.11"
chrono = { version = "0.4", features = ["serde"] }
http = "0.2"
hyper = "0.13.1"
hyper-rustls = "0.19"
log = "0.4"
rustls = "0.16"
seahash = "4"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
tokio = { version = "0.2", features = ["fs", "macros", "io-std", "time"] }
url = "2"
percent-encoding = "2"
futures = "0.3"
[dev-dependencies]
httptest = "0.11.1"
env_logger = "0.6"
tempfile = "3.1"
[workspace]
members = ["examples/test-installed/", "examples/test-svc-acct/", "examples/test-device/"]