Exclude output dir from package and fix version

This commit is contained in:
Tyler Hallada 2019-07-04 23:12:05 -04:00
parent cb1a7838f1
commit d43b5429c1
3 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,9 @@ name = "icosahedron"
version = "0.1.0" version = "0.1.0"
authors = ["Tyler Hallada <tyler@hallada.net>"] authors = ["Tyler Hallada <tyler@hallada.net>"]
edition = "2018" edition = "2018"
exclude = [
"output/*",
]
[lib] [lib]
name = "icosahedron" name = "icosahedron"

View File

@ -49,7 +49,7 @@ To install, either run `cargo install icosahedron` or checkout the repo and run
Run it with the following options: Run it with the following options:
``` ```
icosahedron 1.0 icosahedron 0.1.0
Tyler Hallada <tyler@hallada.net> Tyler Hallada <tyler@hallada.net>
Generates 3D icosahedra meshes Generates 3D icosahedra meshes

View File

@ -168,7 +168,7 @@ fn main() {
}; };
let matches = clap_app!(icosahedron => let matches = clap_app!(icosahedron =>
(version: "1.0") (version: "0.1.0")
(author: "Tyler Hallada <tyler@hallada.net>") (author: "Tyler Hallada <tyler@hallada.net>")
(about: "Generates 3D icosahedra meshes") (about: "Generates 3D icosahedra meshes")
(@arg truncated: -t --truncated "Generate truncated icosahedra (hexspheres).") (@arg truncated: -t --truncated "Generate truncated icosahedra (hexspheres).")