diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-05T18·00+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-05T19·19+0000 |
commit | 8fc4e083c9c5f1dce759461dc4c45e26151a3ad1 (patch) | |
tree | 1967037f3947a09eb139320bdaa53fc0e08ae430 /web/converse/src/oidc.rs | |
parent | a0c4b91955662297ec5bd9249a9488ea6d52defc (diff) |
chore(web/converse): Apply 'cargo fix --edition' r/2444
This does not yet change up `extern crate` and `macro_use` statements, but since we still depend on Diesel that also wouldn't work right now. Change-Id: I36de1b7b56f7d220f567346e13bad8da06461517 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2858 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web/converse/src/oidc.rs')
-rw-r--r-- | web/converse/src/oidc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/converse/src/oidc.rs b/web/converse/src/oidc.rs index 849143596895..baa6e626c0ac 100644 --- a/web/converse/src/oidc.rs +++ b/web/converse/src/oidc.rs @@ -26,7 +26,7 @@ use actix::prelude::*; use reqwest; use url::Url; use url_serde; -use errors::*; +use crate::errors::*; /// This structure represents the contents of an OIDC discovery /// document. |