Run rustfmt

This commit is contained in:
Alex Crichton 2020-01-07 19:58:45 -08:00
parent 3a18c89a55
commit d0430dd2b1
2 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ use std::io::prelude::*;
use std::io::Cursor;
use std::time::Instant;
use curl::easy::{Easy, List};
use anyhow::{bail, Result};
use curl::easy::{Easy, List};
use percent_encoding::{percent_encode, NON_ALPHANUMERIC};
use serde::{Deserialize, Serialize};
use serde_json;

View File

@ -1,12 +1,12 @@
#![allow(unknown_lints)]
use crate::core::{TargetKind, Workspace};
use crate::ops::CompileOptions;
use anyhow::Error;
use std::fmt;
use std::path::PathBuf;
use std::process::{ExitStatus, Output};
use std::str;
use anyhow::Error;
use crate::core::{TargetKind, Workspace};
use crate::ops::CompileOptions;
pub type CargoResult<T> = anyhow::Result<T>;