diff --git a/Cargo.lock b/Cargo.lock index fc593f2..10c744e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "ansi_term" version = "0.11.0" @@ -174,7 +176,7 @@ dependencies = [ [[package]] name = "non-attacking-queens" -version = "0.1.0" +version = "0.1.1" dependencies = [ "fnv", "itertools", diff --git a/Cargo.toml b/Cargo.toml index bf93c9f..1ff4ca3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "non-attacking-queens" -version = "0.1.0" +version = "0.1.1" authors = ["InnovativeInventor "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index 7fccd56..766d709 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,7 +48,7 @@ struct Opt { #[structopt(short = "r", long = "read")] read: Option, - // File to read from + // Non-interactive, for use in scripts and CI/CD #[structopt(short = "s", long = "non-interactive")] noninteractive: bool, }