-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (28 loc) · 936 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "nova_stella"
version = "0.0.1"
description = "A 4X strategy game focused on exploring and developing a single, procedurally generated star system."
keywords = ["game", "strategy", "space", "simulation"]
authors = ["DomtronVox <[email protected]>"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/DomtronVox/Nova-Stella"
license-file = "LICENSE"
default-run = "macroquad_client"
[dependencies]
rand = "0.3"
nalgebra-glm = "0.3"
specs = { version = "0.16.1", features = ["specs-derive"] }
rayon = "1.5.0"
#These are macroquad_client deps
macroquad = { version = "0.3.0-alpha.14", optional = true }
megaui-macroquad = { version = "0.1.2", optional = true}
[features]
default = ["macroquad", "megaui-macroquad"]
[lib]
name = "nova_stella_sim"
path = "src/simulation/lib.rs"
[[bin]]
name = "macroquad_client"
path = "src/macroquad_client/main.rs"
required-features = ["default"]