-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 822 Bytes
/
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
[package]
name = "chess2-canvas"
version = "0.1.0"
edition = "2021"
authors = ["BM"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = {version = "0.7", features = ["render"]}
bevy_render = "0.7"
bevy-inspector-egui = "0.11"
bevy_editor_pls = {git = "https://github.com/jakobhellermann/bevy_editor_pls"}
bevy_prototype_lyon = "0.5"
winit = {version = "0.26"}
image = {version = "0.24"}
bevy_svg = { version = "0.7", default-features = false, features = ["2d"] }
iyes_loopless = { version = "0.6.1"}
regex = "1"
chrono = "0.4.19"
[target.'cfg(windows)'.dependencies]
win-screenshot = "1.0.2"
[profile.dev.package."*"]
opt-level = 3
[workspace.metadata.dylint]
libraries = [
{ git = "https://github.com/MinerSebas/bevy_lint", branch = "main" },
]