A 3D gravitational simulator, written in rust
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
[package]
|
|
name = "galaxy3d"
|
|
version = "0.1.0"
|
|
authors = ["Stephen <stephen@stephendownward.ca>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.7"
|
|
rayon = "1.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
png = "0.16"
|
|
clap = "2.33"
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = [
|
|
"-C", "link-arg=-fuse-ld=lld",
|
|
]
|