-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (26 loc) · 881 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
35
[package]
name = "bevy-xreal-ar-demo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# remove dynamic_linking when compiling for release
bevy = { version = "0.13.0", features = ["dynamic_linking"] }
bevy_framepace = "0.15.0"
hidapi = { version = "2.6.1" }
tinyjson = { version = "2.5.1" }
bytemuck = { version = "1.13.1" }
byteorder = "1.4"
nalgebra = { version = "0.32.3", default-features=false, features = ["std"]}
dcmimu = "0.2.2"
async-hid = "0.1.0"
[dev-dependencies]
clap = { version = "4.3", features = ["derive"] }
[workspace]
resolver = "2" # Important! wgpu/Bevy needs this!
# Enable optimization in debug mode
[profile.dev]
opt-level = 3
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3