-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
96 lines (80 loc) · 1.96 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
[package]
name = "bevy_silk"
version = "0.9.0"
edition = "2021"
authors = ["Felix de Maneville <felix.maneville@gmail.com>"]
repository = "https://github.com/ManevilleF/bevy_silk"
license = "MIT"
exclude = ["docs", "assets", ".github"]
description = "Cloth physics implementation in bevy"
keywords = ["verlet", "physics", "bevy", "cloth"]
categories = ["game-engines", "game-development"]
readme = "README.md"
documentation = "https://docs.rs/bevy_silk"
[features]
default = []
rapier_collisions = ["bevy_rapier3d"]
avian_collisions = ["avian3d"]
[dependencies]
# Error handling
thiserror = "1.0"
[dependencies.bevy]
version = "0.14"
default-features = false
features = ["bevy_render", "bevy_asset", "bevy_color"]
[dependencies.bevy_rapier3d]
version = "0.27"
optional = true
default-features = false
features = ["dim3", "async-collider"]
[dependencies.avian3d]
version = "0.1"
optional = true
default-features = false
features = ["3d", "f32", "default-collider", "parry-f32"]
[dev-dependencies]
bevy-inspector-egui = "0.25"
rand = "0.8"
avian3d = "0.1"
bevy_rapier3d = "0.27"
[dev-dependencies.bevy]
version = "0.14"
features = [
"bevy_asset",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_sprite",
"png",
"x11",
"tonemapping_luts",
]
default-features = false
[[example]]
name = "balloon"
path = "examples/balloon_example.rs"
[[example]]
name = "flag"
path = "examples/flag_example.rs"
[[example]]
name = "moving"
path = "examples/moving_example.rs"
[[example]]
name = "rapier_collision"
path = "examples/rapier_collision_example.rs"
required-features = ["rapier_collisions"]
[[example]]
name = "avian_collision"
path = "examples/avian_collision_example.rs"
required-features = ["avian_collisions"]
[[example]]
name = "anchors"
path = "examples/anchors_example.rs"
[[example]]
name = "camera_plugin"
path = "examples/camera_plugin.rs"
crate-type = ["staticlib"]
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1