feat(oidc): Implement initial OIDC actor

Implements an actor that can perform OAuth2 logins (not really
OIDC-compliant yet because Rust doesn't have an easy to use JWT
library that supports JWKS, and I don't have time for that right now).

Currently this hardcodes some Office365-specific stuff.
This commit is contained in:
Vincent Ambo 2018-04-08 22:36:34 +02:00
parent da33786939
commit 249f17b60a
5 changed files with 489 additions and 2 deletions

View file

@ -16,3 +16,9 @@ tera = "0.11"
serde = "1.0"
serde_derive = "1.0"
failure = "*"
url = "1.7"
url_serde = "0.2"
reqwest = "0.8"
frank_jwt = "3.0"
serde_json = "1.0"
hyper = "*"