-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
106 lines (86 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
106 lines (86 loc) · 2.13 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
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
[package]
name = "bevy_card3d_kit"
version = "0.1.5"
edition = "2024"
description = "a lib for put and use Card in 3d"
categories = ["game-development"]
homepage = "https://github.com/zzhgithub/bevy_card3d_kit"
repository = "https://github.com/zzhgithub/bevy_card3d_kit"
authors = ["robzhou 1042181618@qq.com"]
readme = "README.md"
exclude = ["doc/*", "examples/*", "target/*", "assets/cards/*"]
license = "MIT OR Apache-2.0"
[workspace]
resolver = "2"
[features]
default = [
"bevy/bevy_window",
"bevy/bevy_pbr",
"bevy/bevy_picking",
"bevy/bevy_mesh_picking_backend"
]
image_preview = [
"bevy/bevy_state"
]
[dependencies]
bevy = { version = "0.16.0", default-features = false }
#bevy_tween = { git = "https://github.com/Multirious/bevy_tween.git", branch = "bevy-v0.16.0" }
bevy_tween = "0.8.0"
serde = { version = "1.0.217", features = ["derive"] }
rand = "0.9.0-beta.1"
#bevy_mod_outline = { git = "https://github.com/komadori/bevy_mod_outline.git", branch = "bevy-0.16" }
bevy_mod_outline = { version = "0.10.0" }
[dev-dependencies]
bevy-inspector-egui = "0.31.0"
[dev-dependencies.bevy]
version = "0.16.0"
default-features = false
features = [
"bevy_window",
"bevy_pbr",
"bevy_winit",
"bevy_core_pipeline",
"bevy_sprite",
"hdr",
"tonemapping_luts",
"png",
"bevy_picking",
"bevy_mesh_picking_backend",
"bevy_state",
"bevy_log",
"serialize",
]
[[example]]
name = "simlpe"
path = "examples/simple.rs"
[[example]]
name = "hand_card"
path = "examples/hand_card.rs"
[[example]]
name = "hand_card_with_state"
path = "examples/hand_card_with_state.rs"
[[example]]
name = "zone"
path = "examples/zone.rs"
[[example]]
name = "card_on_zone"
path = "examples/card_on_zone.rs"
[[example]]
name = "card_on_card"
path = "examples/card_on_card.rs"
[[example]]
name = "card_preview"
path = "examples/card_preview.rs"
required-features = ["image_preview"]
[[example]]
name = "desk_simple"
path = "examples/desk_simple.rs"
[[example]]
name = "effect_cut"
path = "examples/effect_cut.rs"
[[example]]
name = "crack"
path = "examples/crack.rs"
[[example]]
name = "highlight"
path = "examples/highlight.rs"