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/models.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/models.rs')
-rw-r--r-- | web/converse/src/models.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/converse/src/models.rs b/web/converse/src/models.rs index 96eed419d359..da628f78b5bc 100644 --- a/web/converse/src/models.rs +++ b/web/converse/src/models.rs @@ -17,7 +17,7 @@ // <https://www.gnu.org/licenses/>. use chrono::prelude::{DateTime, Utc}; -use schema::{users, threads, posts, simple_posts}; +use crate::schema::{users, threads, posts, simple_posts}; use diesel::sql_types::{Text, Integer}; /// Represents a single user in the Converse database. Converse does |