-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 877 Bytes
/
Copy pathCargo.toml
File metadata and controls
49 lines (41 loc) · 877 Bytes
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
[package]
name = "bevy_trebuchet"
version = "0.1.0"
edition = "2021"
authors = ["xenon615 <xenon615@gmail.com>"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
[dependencies.bevy]
version = "0.16.1"
# default-features = true
default-features = false
features = [
"multi_threaded",
"bevy_gltf",
"bevy_pbr",
]
[dev-dependencies.bevy]
version = "0.16.1"
# default-features = true
default-features = false
features = [
"multi_threaded",
"dynamic_linking",
"bevy_core_pipeline",
"bevy_gltf",
"bevy_pbr",
"bevy_render",
"bevy_scene",
"bevy_winit",
"png",
]
[dependencies]
fastrand = "2.3.0"
avian3d = "0.3.1"
# bevy = {git = "https://github.com/bevyengine/bevy.git", branch = "main", default-features = true, features = ["dynamic_linking"]}
[[example]]
name = "basic"