aboutsummaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-06 14:51:51 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-06 14:51:51 -0800
commit6e4e8251b1b3b6903ac91a3ff45807de6410c173 (patch)
treeda8384f77b071afd9626b8ce7c38082ad1b55e8b /src/parser.rs
parentb6e487e05bcc1696c2d5665e12c65257b51336b5 (diff)
downloadmilf-rs-6e4e8251b1b3b6903ac91a3ff45807de6410c173.tar.gz
milf-rs-6e4e8251b1b3b6903ac91a3ff45807de6410c173.zip
Update to rust master
Closes #34
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 9db2cc9..892f173 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -4,8 +4,8 @@ use std::error::Error;
use std::num::FromStrRadix;
use std::str;
-use {Value, TomlTable};
-use Value::{Array, Table, Float, Integer, Boolean, Datetime};
+use Table as TomlTable;
+use Value::{mod, Array, Table, Float, Integer, Boolean, Datetime};
/// Parser for converting a string to a TOML `Value` instance.
///