-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
79 lines (68 loc) · 1.55 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
[package]
name = "bevy_mod_outline"
version = "0.9.0-rc.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A mesh outlining plugin for Bevy."
readme = "README.md"
homepage = "https://github.com/komadori/bevy_mod_outline/"
repository = "https://github.com/komadori/bevy_mod_outline/"
keywords = ["gamedev", "bevy", "outline"]
categories = ["game-engines", "rendering"]
[dependencies]
bevy = { version = "0.15.0-rc.2", default-features = false, features = [
"bevy_asset",
"bevy_render",
"bevy_scene",
"bevy_pbr",
"bevy_core_pipeline",
] }
bitfield = "0.15"
interpolation = { version = "0.3", optional = true }
thiserror = "1.0"
nonmax = "0.5"
wgpu-types = "22"
[features]
default = ["interpolation"]
[dev-dependencies]
bevy = { version = "0.15.0-rc.2", default-features = false, features = [
"animation",
"bevy_gltf",
"bevy_pbr",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_winit",
"default_font",
"png",
"x11",
"ktx2",
"smaa_luts",
"tonemapping_luts",
"zstd",
] }
[[example]]
name = "shapes"
path = "examples/shapes.rs"
[[example]]
name = "pieces"
path = "examples/pieces.rs"
[[example]]
name = "flying_objects"
path = "examples/flying_objects.rs"
[[example]]
name = "render_layers"
path = "examples/render_layers.rs"
[[example]]
name = "animated_fox"
path = "examples/animated_fox.rs"
[[example]]
name = "hollow"
path = "examples/hollow.rs"
[[example]]
name = "morph_targets"
path = "examples/morph_targets.rs"
[[example]]
name = "ui_aa"
path = "examples/ui_aa.rs"