summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-06-09 13:55:43 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-06-09 13:55:43 +0200
commitf5699c057c000efd80e4bf7dd6b23a0d1750e628 (patch)
treebe137cc2cb38cd3a01be075633447b9396db566b
parente6b613207b540cfae6691d97941007d05ef019be (diff)
Updated default features to not include benchmarking
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs1
2 files changed, 1 insertions, 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<Error> > {
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) => {