-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (42 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
51 lines (42 loc) · 1.08 KB
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
[package]
name = "deathframe"
version = "0.6.0"
authors = ["Noah Rosenzweig <rosenzweig.noah@gmail.com>"]
edition = "2018"
description = "Game development framework for the amethyst game engine"
license = "MIT"
repository = "https://github.com/Noah2610/deathframe"
categories = ["game-development"]
[workspace]
members = [
"deathframe_core",
"deathframe_physics",
"deathframe_animation",
"deathframe_audio",
]
[dependencies.core]
package = "deathframe_core"
version = "0.1.0"
path = "deathframe_core"
[dependencies.physics]
package = "deathframe_physics"
version = "0.1.0"
path = "deathframe_physics"
optional = true
[dependencies.animation]
package = "deathframe_animation"
version = "0.1.0"
path = "deathframe_animation"
optional = true
[dependencies.audio]
package = "deathframe_audio"
version = "0.1.0"
path = "deathframe_audio"
optional = true
[features]
default = ["physics", "animation", "audio"]
vulkan = ["core/vulkan"]
metal = ["core/metal"]
empty = ["core/empty"]
texture_scaling = ["core/texture_scaling"]
debug = ["core/debug", "physics/debug", "animation/debug"]