-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1023 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
36
[package]
name = "bevy_sim_world"
version = "0.1.0"
edition = "2021"
authors = ["Noah Shomette <noahshomette@gmail.com>"]
description = "A library providing a separated simulation world for the Bevy Game Engine"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/NoahShomette/bevy_sim_world"
exclude = ["assets/*", "design/*", "tools/*"]
resolver = "2"
[badges]
maintenance = { status = "actively-developed" }
# 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
[dependencies]
bevy = { version = "0.13.2", features = [
"bevy_scene",
"bevy_gilrs",
"bevy_winit",
"serialize",
"wayland",
"x11",
], default-features = false }
serde = { version = "1.0.125", features = ["derive"] }
bevy-trait-query = { version = "0.5.1" }
bincode = { version = "1.3.3" }
chrono = { version = "0.4.23", features = ["std", "serde"] }