[go: up one dir, main page]

tame-oauth 0.3.0

A (very) simple oauth 2.0 library
Documentation
[package]
name = "tame-oauth"
version = "0.3.0"
authors = ["Embark <opensource@embark-studios.com>", "Jake Shadle <jake.shadle@embark-studios.com>"]
edition = "2018"
description = "A (very) simple oauth 2.0 library"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/tame-oauth"
homepage = "https://github.com/EmbarkStudios/tame-oauth"
repository = "https://github.com/EmbarkStudios/tame-oauth"
keywords = ["oauth", "tame", "sans-io", "gcp"]
readme = "README.md"

[badges]
maintenance = { status = "actively-developed" }

[lib]
doctest = false
path = "src/lib.rs"

[dependencies]
base64 = "0.10.1"
bytes = "0.4.12"
chrono = "0.4.9"
http = "0.1.18"
lock_api = "0.3.1"
parking_lot = "0.9.0"
ring = { version = "0.16.9", optional = true }
serde = { version = "1.0.101", features = [ "derive" ] }
serde_json = "1.0.41"
twox-hash = { version = "1.5.0", default-features = false }
url = { version = "2.1.0", optional = true }

[dev-dependencies]
reqwest = { version = "0.9.21", default-features = false, features = [ "rustls-tls" ] }

[features]
default = ["gcp"]
gcp = ["jwt", "url"]
jwt = ["ring"]