MAINT: Port to Rust 2018 edition

This commit is contained in:
bluss
2019-09-02 22:07:30 +02:00
parent f952e2c788
commit e86a32d454
6 changed files with 16 additions and 15 deletions
+4 -4
View File
@@ -9,10 +9,10 @@ use std::str::FromStr;
use std::str::Utf8Error;
use std::slice;
use array::Array;
use array::Index;
use CapacityError;
use char::encode_utf8;
use crate::array::Array;
use crate::array::Index;
use crate::CapacityError;
use crate::char::encode_utf8;
#[cfg(feature="serde-1")]
use serde::{Serialize, Deserialize, Serializer, Deserializer};