Fix warnings

This commit is contained in:
Odin Dutton 2019-08-19 19:59:41 +10:00
parent 095f4645c0
commit b5b8e4c8b0
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
use crate::commands::command::EvaluatedCommandArgs;
use crate::parser::registry::EvaluatedArgs;
use crate::prelude::*;
use log::trace;
use serde::{de, forward_to_deserialize_any};

View File

@ -41,7 +41,7 @@ crate use crate::context::CommandRegistry;
crate use crate::context::{Context, SpanSource};
crate use crate::env::host::handle_unexpected;
crate use crate::env::Host;
crate use crate::errors::{ShellError, ShellErrorUtils};
crate use crate::errors::ShellError;
crate use crate::object::base as value;
crate use crate::object::meta::{Tag, Tagged, TaggedItem};
crate use crate::object::types::ExtractType;