forked from bones-ai/rust-drive-ai
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
34 lines (29 loc) · 925 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
32
33
34
[package]
name = "steering"
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.10.1" }
bevy-inspector-egui = "0.18.3"
bevy_pancam = "0.8.0"
bevy_prototype_debug_lines = "0.10.1"
bevy_rapier2d = "0.21.0"
bevy-tokio-tasks = "0.10"
dojo-client = { git = "https://github.com/dojoengine/dojo", rev = "187a12e74ad1020d76a86a59315b55f9fb08891e" }
eyre = "0.6"
num = "0.4"
rand = "0.8.5"
starknet = "0.4.0"
tokio = { version = "1", features = ["sync"] }
url = "2.2.2"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
[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