-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (38 loc) · 834 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
44
45
46
47
48
49
50
[package]
name = "klocki"
version = "0.1.5"
authors = ["Piotr Szczygieł <[email protected]>"]
edition = "2018"
description = "An arcade game"
license = "MIT"
readme = "README.md"
categories = ["games"]
repository = "https://github.com/piotrek-szczygiel/klocki"
[profile.dev]
opt-level = 1
[dependencies]
log = "0.4"
env_logger = "0.6"
chrono = "0.4"
dirs = "2.0"
rand = "0.7"
rand_distr = "0.2"
ggez = "0.5"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.1"
toml = "0.5"
flate2 = "1.0"
backtrace = "0.3"
gfx_core = "0.9"
gfx_device_gl = "0.16"
imgui = "0.2"
imgui-gfx-renderer = "0.2"
[build-dependencies]
walkdir = "2.2"
winres = "0.1"
zip = "0.5"
[package.metadata.bundle]
identifier = "dev.szczygiel.klocki"
icon = ["resources/icon.ico"]
category = "Game"
deb_depends = ["libasound2", "libudev1"]