-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
78 lines (63 loc) · 1.72 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
73
74
75
76
77
78
[package]
name = "bevypunk"
authors = ["IDEDARY"]
version = "0.0.1"
edition = "2021"
resolver = "2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/idedary/bevypunk"
[profile.dev]
debug = 0
strip = "debuginfo"
opt-level = 0
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
panic = 'abort'
debug = 0
strip = true
lto = "thin"
codegen-units = 1
[dependencies]
# Required for VFX
rand = "0.8.5"
# UI framework
# This project is used to dogfood the Bevy Lunex library. Please select one version that works.
#bevy_lunex = { version = "0.2.3", features=["kira"]}
#bevy_lunex = { git = "https://github.com/bytestring-net/bevy_lunex", branch="dev", features=["kira"] }
bevy_lunex = { path = "/home/dominik/Projects/Bytestring/bevy_lunex/crates/bevy_lunex", features=["kira"] }
# Audio
bevy_kira_audio = { version = "^0.20.0" }
# Physics
avian3d = "^0.1.0"
# Game engine
bevy = { version = "^0.14.0", default-features = false, features = [
# Core
"bevy_core_pipeline",
"multi_threaded",
"bevy_winit",
#"bevy_audio",
"bevy_sprite",
"bevy_gilrs",
"bevy_text",
"webgl2",
# Core formats
#"vorbis",
"png",
# VFX
"hdr",
"tonemapping_luts",
# 3D
"jpeg",
"bevy_gltf",
#"dynamic_linking",
] }
# Not WASM
[target.'cfg(not(target_family = "wasm"))'.dependencies]
bevy_embedded_assets = { version = "^0.11.0" }
#vleue_kinetoscope = "0.2.0"
vleue_kinetoscope = { git = "https://github.com/IDEDARY/vleue_kinetoscope" }
# Platform specific
[target.'cfg(unix)'.dependencies]
bevy = { version = "^0.14.0", default-features = false, features = ["x11", "wayland"] }