remove some unused imports

This commit is contained in:
Damien Elmes 2020-02-29 15:21:11 +10:00
parent 801c5fcc40
commit 3a1fc74ec3
4 changed files with 0 additions and 4 deletions

View file

@ -11,7 +11,6 @@ use std::io::Read;
use std::path::{Path, PathBuf};
use std::{fs, io, time};
use unicode_normalization::{is_nfc, UnicodeNormalization};
use utime;
/// The maximum length we allow a filename to be. When combined
/// with the rest of the path, the full path needs to be under ~240 chars

View file

@ -12,7 +12,6 @@ use crate::version;
use bytes::Bytes;
use coarsetime::Instant;
use log::debug;
use reqwest;
use reqwest::{multipart, Client, Response};
use serde_derive::{Deserialize, Serialize};
use serde_tuple::Serialize_tuple;

View file

@ -5,7 +5,6 @@ use crate::err::{AnkiError, Result, TemplateError};
use crate::i18n::{tr_strs, FString, I18n};
use crate::template_filters::apply_filters;
use lazy_static::lazy_static;
use nom;
use nom::branch::alt;
use nom::bytes::complete::tag;
use nom::error::ErrorKind;

View file

@ -1,7 +1,6 @@
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
use htmlescape;
use lazy_static::lazy_static;
use regex::{Captures, Regex};
use std::borrow::Cow;