From d43b5429c1cca77e5d0ba2c983bc5b86c3a9059b Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Thu, 4 Jul 2019 23:12:05 -0400 Subject: [PATCH] Exclude output dir from package and fix version --- Cargo.toml | 3 +++ README.md | 2 +- src/bin.rs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 080d4bd..8136ee3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,9 @@ name = "icosahedron" version = "0.1.0" authors = ["Tyler Hallada "] edition = "2018" +exclude = [ + "output/*", +] [lib] name = "icosahedron" diff --git a/README.md b/README.md index 436157b..2a231eb 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To install, either run `cargo install icosahedron` or checkout the repo and run Run it with the following options: ``` -icosahedron 1.0 +icosahedron 0.1.0 Tyler Hallada Generates 3D icosahedra meshes diff --git a/src/bin.rs b/src/bin.rs index 0136360..f2328b9 100644 --- a/src/bin.rs +++ b/src/bin.rs @@ -168,7 +168,7 @@ fn main() { }; let matches = clap_app!(icosahedron => - (version: "1.0") + (version: "0.1.0") (author: "Tyler Hallada ") (about: "Generates 3D icosahedra meshes") (@arg truncated: -t --truncated "Generate truncated icosahedra (hexspheres).")