-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (27 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "accrete"
version = "0.2.3"
authors = ["Leonid <[email protected]>"]
license="MIT"
repository = "https://github.com/LeonidGrr/accrete.git"
description="Rust port of Accrete, planetary system generation algorithm. Based on 'Formation of Planetary Systems by Aggregation: A Computer Simulation' by Stephen H. Dole. Improved and extended by many talented people during past ~50 years."
edition = "2021"
readme = "README.md"
keywords = ["accrete", "planetary", "system", "procedural", "generation"]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook", "wee_alloc"]
[dependencies]
rand = "0.8.3"
getrandom = { version = "0.2.3", features = ["js"] }
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
rand_chacha = { version = "0.3.1", features = ["serde1"] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
console_error_panic_hook = { version = "0.1.7", optional = true }
wee_alloc = { version = "0.4.5", optional = true }
[profile.release]
lto = true
opt-level = 's'
codegen-units = 1