-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
49 lines (41 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "castle-game"
version = "0.1.37-alpha.0"
edition = "2018"
authors = ["Thomas Versteeg <thomasversteeg@gmx.com>"]
license = "GPL-3.0"
homepage = "https://github.com/tversteeg/castle-game"
readme = "README.md"
description = "2D destructible terrain strategy game"
repository = "https://github.com/tversteeg/castle-game.git"
keywords = ["game", "2d", "destructible"]
categories = ["games"]
build = "build.rs"
[badges]
travis-ci = {repository = "tversteeg/castle-game"}
is-it-maintained-issue-resolution = { repository = "tversteeg/castle-game" }
[dependencies]
cgmath = "0.17.0"
collision = "0.20.1"
const-tweaker = "0.3.1"
cpal = "0.11.0"
direct-gui = "0.1.25"
line_drawing = "0.8.0"
minifb = "0.19.0"
rand = "0.8.0"
sfxr = "0.1.4"
specs = { version = "0.16.1", features = ["shred-derive"] }
specs-derive = "0.4.1"
[dependencies.rust-embed]
version = "5.5.1"
features = ["interpolate-folder-path"]
[dependencies.blit]
version = "0.5.12"
default-features = false
features = ["aseprite"]
[build-dependencies]
git2 = "0.13.6"
blit = "0.5.12"
image = "0.23.6"
aseprite = "0.1.3"
serde_json = "1.0.56"