icosahedron/Cargo.toml

31 lines
688 B
TOML
Raw Normal View History

2019-02-18 05:20:14 +00:00
[package]
name = "icosahedron"
version = "0.1.1"
2019-02-18 05:20:14 +00:00
authors = ["Tyler Hallada <tyler@hallada.net>"]
edition = "2018"
exclude = [
"output/*",
]
2019-07-05 03:22:22 +00:00
description = "Generates subdivided and truncated icosahedron spheres"
repository = "https://github.com/thallada/icosahedron"
readme = "README.md"
keywords = ["meshes", "3d", "shapes", "icosahedron", "polyhedra"]
categories = ["graphics"]
license = "MIT"
2019-02-18 05:20:14 +00:00
[lib]
name = "icosahedron"
path = "src/lib.rs"
[[bin]]
name = "icosahedron"
path = "src/bin.rs"
2019-02-18 05:20:14 +00:00
[dependencies]
byteorder = "1.3.2"
clap = "2.33.0"
2019-02-18 05:20:14 +00:00
cgmath = { version = "0.17.0", features = ["serde"] }
rand = "0.6.5"
2019-02-18 05:20:14 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"