-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.27 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "bevy_mod_spatial_query"
version = "0.2.0"
edition = "2024"
license = "MIT"
authors = ["Ada Hieta <ada@hieta.fi>"]
description = "Spatially aware Queries for the Bevy game engine"
keywords = ["gamedev", "bevy", "spatial"]
categories = ["game-development"]
homepage = "https://github.com/Feilkin/bevy_mod_spatial_query"
repository = "https://github.com/Feilkin/bevy_mod_spatial_query"
readme = "README.md"
[lib]
# Disable benchmarks because we use Criterion.rs for benchmarking
bench = false
[dependencies]
bevy = { version = "0.15", default-features = false, features = ["bevy_color", "bevy_gizmos"] }
[dev-dependencies]
# more bevy features are needed for the examples
bevy = { version = "0.15.3", default-features = false, features = [
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_gizmos",
"bevy_pbr",
"bevy_picking",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_ui_picking_backend",
"bevy_window",
"bevy_winit",
"custom_cursor",
"default_font",
"multi_threaded",
"sysinfo_plugin",
"x11",
] }
criterion = "0.5.1"
turborand = "0.10.1"
# makes examples faster
[profile.dev]
opt-level = 3
lto = "off"
[[bench]]
name = "benchmarks"
harness = false