From f5699c057c000efd80e4bf7dd6b23a0d1750e628 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 9 Jun 2018 13:55:43 +0200 Subject: Updated default features to not include benchmarking --- Cargo.toml | 2 +- src/main.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 926ab10..bc49a40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,4 +19,4 @@ energy-cutoff = [] reduced-time = [] extended-time = [] -default = ["energy-cutoff", "benchmarking"] +default = ["energy-cutoff"] diff --git a/src/main.rs b/src/main.rs index 251b980..f3d9373 100644 --- a/src/main.rs +++ b/src/main.rs @@ -40,7 +40,6 @@ fn write_command(filename: &str, command: Command) -> Result<(), Box > { fn main() { let start_time = PreciseTime::now(); - println!("Reading in state.json file"); let (settings, state) = match input::json::read_state_from_file(STATE_PATH) { Ok(ok) => ok, Err(error) => { -- cgit v1.2.3