tvl-depot/Cargo.toml
Vincent Ambo 249f17b60a 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.
2018-04-08 22:36:34 +02:00

24 lines
515 B
TOML

[package]
name = "converse"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
[dependencies]
actix = "0.5"
actix-web = { git="https://github.com/actix/actix-web.git" }
env_logger = "0.5"
diesel = { version = "1.2", features = ["postgres", "chrono", "r2d2"]}
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
r2d2 = "*"
futures = "*"
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 = "*"