-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (54 loc) · 1.53 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
[package]
name = "orthros_be"
default-run = "Orthros"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.14", features = ["dynamic_linking",
"wayland",
]}
# bevy = { version = "0.14", default_features = false, features = [
# # Core
# "bevy_core_pipeline",
# "multi_threaded",
# "bevy_winit",
# "bevy_audio",
# "bevy_sprite",
# "bevy_text",
# # Core formats
# "vorbis",
# "png",
# # ... Enable what you need here
# "wayland",
# "bevy_gltf",
# "tonemapping_luts",
# ]}
bevy_rapier3d = { version = "0.27.0-RC.1", features = [ "debug-render-3d" ] }
strum = "*"
strum_macros = "*"
ron = "0.8"
serde = { version = "1", features = ["derive"] }
bevy_file_dialog = {git = "https://github.com/globin/bevy_file_dialog.git", branch = "bevy-0-14"}
bevy_lunex = { version = "0.2", features = ["debug"] }
# bevy_egui = {version = "0.28", optional=true}
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]
# [features]
# game = ["bevy"]
# unit-creator = ["bevy-uc"]
[[bin]]
name = "Orthros"
path = "src/main.rs"
# required-features = ["game"]
[[bin]]
name = "unit-creator"
path = "src/unit-creator.rs"
# required-features = ["unit-creator"]