From 00db885e88bd3957872278d41f991046435d335c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 31 Mar 2021 15:09:38 +0200 Subject: Ensure order in the galaxy... I mean the imports This patch sorts the imports: 1. std imports 2. external crate imports 3. own module imports In three blocks, each alphabetically (with is also enforced by rustfmt). As well as it prefixes the imports of own modules with crate:: This is just a quality-of-life patch :-) Signed-off-by: Matthias Beyer --- src/file/format/toml.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/file/format/toml.rs') diff --git a/src/file/format/toml.rs b/src/file/format/toml.rs index 409f73f..c5b7a7d 100644 --- a/src/file/format/toml.rs +++ b/src/file/format/toml.rs @@ -1,7 +1,9 @@ use std::collections::HashMap; use std::error::Error; + use toml; -use value::{Value, ValueKind}; + +use crate::value::{Value, ValueKind}; pub fn parse( uri: Option<&String>, -- cgit v1.2.3