forked from ozkriff/zemeroth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 931 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
[package]
name = "zemeroth"
version = "0.7.0-snapshot"
authors = ["Andrey Lesnikov <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
description = "A 2D turn-based hexagonal tactical game."
[profile.dev.package."*"]
opt-level = 3
[workspace]
members = ["zcomponents", "zgui", "zscene"]
[package.metadata.android]
assets = "assets/"
[dependencies]
ron = "0.6"
log = "0.4"
env_logger = "0.9"
derive_more = { version = "0.99", features = ["from"] }
serde = { version = "1.0", features = ["derive"] }
num = { version = "0.4", default-features = false }
ui = { path = "zgui", package = "zgui" }
zscene = { path = "zscene" }
zcomponents = { path = "zcomponents" }
rand = { version = "0.8", default-features = false, features = ["alloc"] }
quad-rand = { version = "0.2", features = ["rand"] }
mq = { package = "macroquad", version = "0.3" }
heck = "0.3"
once_cell = "1.6"
[dev-dependencies]
pretty_assertions = "0.7"