aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-11 09:18:52 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-11 09:18:52 -0700
commitb70f6e53b20c8f90f525219b1db7e99f6ef417dc (patch)
treedb07abd1873e328786988e2a3ef83224f100d675 /src/lib.rs
parentbaf77e44c3f645421ded4c583118821a474cce5d (diff)
downloadmilf-rs-b70f6e53b20c8f90f525219b1db7e99f6ef417dc.tar.gz
milf-rs-b70f6e53b20c8f90f525219b1db7e99f6ef417dc.zip
Don't need to qualify String
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
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<Value>;
/// Type representing a TOML table, payload of the Value::Table variant
-pub type Table = BTreeMap<string::String, Value>;
+pub type Table = BTreeMap<String, Value>;
impl Value {
/// Tests whether this and another value have the same type.