From 249f17b60a0313a66443a5c67403794986430e34 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 8 Apr 2018 22:36:34 +0200 Subject: 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. --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 9bcfafac4f14..66babe416737 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 = "*" -- cgit 1.4.1