oidc/Cargo.toml

24 lines
729 B
TOML
Raw Normal View History

[package]
name = "oidc"
version = "0.1.0"
authors = ["Matthew Scheirer <matt.scheirer@gmail.com>"]
categories = ["web-programming", "authentication"]
description = "OpenID Connect client library using Reqwest"
license = "Apache-2.0"
keywords = ["sync", "authentication", "client", "reqwest",
"oauth", "openid", "openid_connect", "web"]
readme = "README.md"
[dependencies]
2017-10-24 00:13:08 +00:00
base64 = "0.7"
biscuit = { git = "https://github.com/Korvox/biscuit" }
chrono = "0.4"
2017-10-24 00:13:08 +00:00
inth-oauth2 = "0.15"
reqwest = "0.8"
serde = "1"
serde_derive = "1"
serde_json = "1"
url_serde = "0.2"
validator = "0.6"
validator_derive = "0.6"