-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (45 loc) · 1.41 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
[package]
name = "skipngo"
version = "0.0.0"
authors = ["Zicklag <[email protected]>"]
edition = "2018"
license-file = "LICENSE.md"
description = "A 2D game engine made so you can skip the hard stuff and go make a game!"
repository = "https://github.com/katharostech/skipngo"
documentation = "https://docs.rs/skipngo"
readme = "README.md"
keywords = ["gamedev", "game-engine", "bevy", "2D", "easy"]
categories = [
"games",
"game-development",
"game-engines"
]
[dependencies]
bevy = { version = "0.5", default-features = false }
bevy_retrograde = { git = "https://github.com/katharostech/bevy_retrograde.git", features = ["ldtk", "epaint"] }
serde_yaml = "0.8.17"
serde = "1.0.124"
thiserror = "1.0.24"
anyhow = "1.0.38"
hex = "0.4.3"
navmesh = "0.8.3"
delaunator = "0.2.1"
decorum = "0.3.1"
itertools = "0.10.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3.48", features = ["Window", "Location", "Document"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
structopt = "0.3.21"
[build-dependencies]
cfg_aliases = "0.1.1"
# Enable optimizations for dependencies but not for our code
[profile.dev.package."*"]
opt-level = 3
debug = false
[profile.dev]
opt-level = 0
[profile.release]
lto = true
codegen-units = 1 # Improves physics performance for release builds
[patch.crates-io]
winit = { git = "https://github.com/katharostech/winit", branch = "web-sys-touch-events" }