cargo fmt

This commit is contained in:
Robert Kelly 2018-06-13 21:42:30 -04:00 committed by Grimes
parent 7b7c7cba21
commit 34e0cb0092
2 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
extern crate atty;
extern crate env_logger;
extern crate getopts;
extern crate atty;
extern crate pnet;
extern crate rayon;
extern crate serde_json;
extern crate solana;
use getopts::Options;
use atty::{is, Stream};
use getopts::Options;
use pnet::datalink;
use rayon::prelude::*;
use solana::crdt::{Crdt, ReplicatedData};

View File

@ -1,13 +1,13 @@
extern crate atty;
extern crate env_logger;
extern crate getopts;
extern crate atty;
extern crate serde_json;
extern crate solana;
#[macro_use]
extern crate log;
use getopts::Options;
use atty::{is, Stream};
use getopts::Options;
use solana::bank::Bank;
use solana::crdt::ReplicatedData;
use solana::entry::Entry;