24 lines
729 B
TOML
24 lines
729 B
TOML
[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]
|
|
base64 = "0.7"
|
|
biscuit = { git = "https://github.com/Korvox/biscuit" }
|
|
chrono = "0.4"
|
|
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"
|