From eb6fb8e5fe1efb3fbb927d13075cf5a1b33aa83e Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 8 Jan 2019 21:43:14 -0800 Subject: rust 2018 edition! Only the basics to get things to compile/test again in this commit. --- rust/src/api_wrappers.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rust/src/api_wrappers.rs') diff --git a/rust/src/api_wrappers.rs b/rust/src/api_wrappers.rs index f03d4041..69bdd88e 100644 --- a/rust/src/api_wrappers.rs +++ b/rust/src/api_wrappers.rs @@ -1,12 +1,12 @@ //! API endpoint handlers -use api_entity_crud::EntityCrud; -use api_helpers::*; -use api_server::Server; -use auth::*; -use database_models::EntityEditRow; +use crate::api_entity_crud::EntityCrud; +use crate::api_helpers::*; +use crate::api_server::Server; +use crate::auth::*; +use crate::database_models::EntityEditRow; use diesel::Connection; -use errors::*; +use crate::errors::*; use fatcat_api_spec::models; use fatcat_api_spec::models::*; use fatcat_api_spec::*; -- cgit v1.2.3