-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (28 loc) · 878 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
[package]
name = "omegaquad"
version = "0.1.0"
authors = ["gamma-delta <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Core game engine stuff
macroquad = "0.3.4"
cogs-gamedev = "*"
quad-wasmnastics = "*"
crossbeam = { version = "0.8.0", optional = true }
enum_dispatch = "0.3.7"
# Other stuff required for things to work
enum-map = "1.0.0"
once_cell = "1.7.2"
bincode = "1.3.3"
serde = { version = "1.0.126", features = ["derive"] }
rand = { version = "0.8.3" }
quad-rand = { version = "0.2.1", features = ["rand"] }
getrandom = { version = "0.2.2", features = ["custom"] }
# Bonus things I seem to use all the time
anyhow = "1.0.40"
regex = "1.5.4"
itertools = "0.10.1"
[features]
default = ["thread_loop"]
thread_loop = ["crossbeam"]