From eed9d6ee002e1ad034b3db7057b5a0f8338a736a Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 9 Jun 2019 19:47:36 +0200 Subject: Use rust edition 2018. --- src/abconfig.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/abconfig.rs') diff --git a/src/abconfig.rs b/src/abconfig.rs index 92b8161..78eec4b 100644 --- a/src/abconfig.rs +++ b/src/abconfig.rs @@ -14,8 +14,10 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -use client::{self, Client}; -use error::Error; +use crate::{ + client::{self, Client}, + error::Error, +}; pub struct ABConfigFetcher<'a> { client: &'a Client, -- cgit v1.2.3