From b70f6e53b20c8f90f525219b1db7e99f6ef417dc Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 11 Aug 2015 09:18:52 -0700 Subject: Don't need to qualify String --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 0196fbc..c974cd0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,6 @@ use std::collections::BTreeMap; use std::str::FromStr; -use std::string; pub use parser::{Parser, ParserError}; @@ -76,7 +75,7 @@ pub enum Value { pub type Array = Vec; /// Type representing a TOML table, payload of the Value::Table variant -pub type Table = BTreeMap; +pub type Table = BTreeMap; impl Value { /// Tests whether this and another value have the same type. -- cgit v1.2.3