icosahedron/Cargo.toml

25 lines
433 B
TOML
Raw Normal View History

2019-02-18 05:20:14 +00:00
[package]
name = "icosahedron"
version = "0.1.0"
authors = ["Tyler Hallada <tyler@hallada.net>"]
edition = "2018"
exclude = [
"output/*",
]
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"