chore(web/converse): Apply 'cargo fix --edition'

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>
This commit is contained in:
Vincent Ambo 2021-04-05 20:00:13 +02:00 committed by tazjin
parent a0c4b91955
commit 8fc4e083c9
7 changed files with 29 additions and 29 deletions

View file

@ -22,10 +22,10 @@
use actix::prelude::*;
use askama::Template;
use errors::*;
use crate::errors::*;
use std::fmt;
use md5;
use models::*;
use crate::models::*;
use chrono::prelude::{DateTime, Utc};
use comrak::{ComrakOptions, markdown_to_html};