-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (31 loc) · 1.03 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
[package]
name = "sr-rl"
version = "0.21.0"
edition = "2021"
rust-version = "1.77" #"1.76"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
[dependencies]
#bevy-inspector-egui= "0.23.4"
#egui ="*"
bevy = "0.13"
#bevy = { git = "https://github.com/bevyengine/bevy.git", branch = "main" }
serde = "^1"
serde_json = "1"
rand = "0.8.0"
bresenham = "0.1.0"
csv = "1.3.0"
lazy_static = "1.4.0"
[workspace]
resolver = "2" # Important! wgpu/Bevy needs this!
# 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
[profile.release]
codegen-units = 1
[patch.crates-io]
#wgpu = { git = "https://github.com/gfx-rs/wgpu" , rev = "3d10678a91b78557b0dea537407eb4a4ff754872" } #https://github.com/bevyengine/bevy/issues/4461#issuecomment-1097560344