-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
72 lines (57 loc) · 1.39 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "compact-space"
version = "0.2.1"
authors = ["Christian Fisch <christian.fiesel@gmail.com>"]
description = "Compact Space is a Astroid like space shooter in tight space"
license = "Apache License 2.0"
readme = "README.md"
edition = "2018"
[dependencies]
tetra = { version = "0.3", features = ["serde_support"] }
# specs
specs = "0.15.0"
specs-derive = "0.4.0"
# ron
ron = "0.5"
serde = { version = "1", features = ["serde_derive"] }
# random
rand = "0.6"
rand_core = "0.2.2"
[build-dependencies]
winres = "0.1"
image = "0.21.1"
[profile.dev]
opt-level = 3
debug = 0
rpath = false
lto = false
debug-assertions = false
codegen-units = 16
overflow-checks = false
incremental = true
[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 = """
Compact Space - an unusual space shooter
Original made for Game Off 2019 Jam.
jam page : https://itch.io/jam/game-off-2019
source : https://github.com/puppetmaster-/compact-space
"""
section = "games"
[package.metadata.winres]
OriginalFilename = "compact-space.exe"
LegalCopyright = "Copyright © 2019 Christian Fisch"
[package.metadata.rpm]
buildflags = ["--release"]
[package.metadata.rpm.targets]
compact-space = { path = "/usr/bin/compact-space" }