-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
107 lines (93 loc) · 2.75 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[package]
name = "big_space"
version = "0.9.1"
edition = "2021"
description = "A floating origin plugin for bevy"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "floating-origin", "large-scale", "space"]
repository = "https://github.com/aevyrie/big_space"
documentation = "https://docs.rs/crate/big_space/latest"
[features]
default = []
debug = ["bevy_gizmos", "bevy_color"]
camera = ["bevy_render", "bevy_time", "bevy_input"]
[dependencies]
tracing = "0.1" # Less deps than pulling in bevy_log
smallvec = "1.13.2" # Already used by bevy in commands
bevy_app = { version = "0.15.0", default-features = false }
bevy_ecs = { version = "0.15.0", default-features = true }
bevy_hierarchy = { version = "0.15.0", default-features = false }
bevy_math = { version = "0.15.0", default-features = false }
bevy_reflect = { version = "0.15.0", default-features = false }
bevy_tasks = { version = "0.15.0", default-features = false }
bevy_transform = { version = "0.15.0", default-features = false, features = [
"bevy-support",
] }
bevy_utils = { version = "0.15.0", default-features = false }
# Optional
bevy_color = { version = "0.15.0", default-features = false, optional = true }
bevy_gizmos = { version = "0.15.0", default-features = false, optional = true }
bevy_render = { version = "0.15.0", default-features = false, optional = true }
bevy_input = { version = "0.15.0", default-features = false, optional = true }
bevy_time = { version = "0.15.0", default-features = false, optional = true }
[dev-dependencies]
big_space = { path = "", features = ["debug", "camera"] }
bevy = { version = "0.15.0", default-features = false, features = [
"bevy_scene",
"bevy_asset",
"bevy_gltf",
"bevy_winit",
"default_font",
"bevy_ui",
"bevy_pbr",
"bevy_gizmos",
"animation",
"bevy_window",
"x11",
"tonemapping_luts",
"multi_threaded",
] }
noise = "0.9"
turborand = "0.10"
criterion = "0.5"
bytemuck = "1.20"
bevy_hanabi = "0.14"
[[bench]]
name = "benchmarks"
harness = false
[[example]]
name = "debug"
path = "examples/debug.rs"
doc-scrape-examples = false
[[example]]
name = "demo"
path = "examples/demo.rs"
doc-scrape-examples = false
[[example]]
name = "error_child"
path = "examples/error_child.rs"
doc-scrape-examples = false
[[example]]
name = "error"
path = "examples/error.rs"
doc-scrape-examples = false
[[example]]
name = "infinite"
path = "examples/infinite.rs"
doc-scrape-examples = false
[[example]]
name = "minimal"
path = "examples/minimal.rs"
doc-scrape-examples = false
[[example]]
name = "particles"
path = "examples/particles.rs"
doc-scrape-examples = false
[[example]]
name = "planets"
path = "examples/planets.rs"
doc-scrape-examples = false
[[example]]
name = "split_screen"
path = "examples/split_screen.rs"
doc-scrape-examples = false