-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (44 loc) · 1.05 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
50
51
52
53
54
55
56
[package]
name = "shoot_out_your_life"
description = "2D vertical arcade shooter"
version = "0.2.1"
build = "build.rs"
authors = ["puppetmaster <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
[dependencies]
tetra = "0.2.18"
lazy_static = "1.3.0"
# random
rand = "0.6"
rand_core = "0.2.2"
# logging
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
simple_logger = "1.0"
# error
color-backtrace = { version = "0.1" }
[build-dependencies]
winres = "0.1"
image = "0.21.1"
[profile.dev]
opt-level = 3
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[package.metadata.deb]
depends = "libasound2 (>= 1.1.3)"
extended-description = """
2D vertical arcade shooter where your ammo is your lives.
Made for the Ludum Dare 44.
jam page : https://ldjam.com/events/ludum-dare/44/shoot-out-your-life
source : https://github.com/puppetmaster-/shoot-out-your-life
"""
section = "games"