forked from YoshieraHuang/bevy_outline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 936 Bytes
/
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
[package]
name = "bevy_outline"
description = "Pixel-Perfect Outline Shader for Bevy"
homepage = "https://github.com/YoshieraHuang/bevy_outline"
repository = "https://github.com/YoshieraHuang/bevy_outline"
version = "0.2.0"
edition = "2021"
license = "MIT"
keywords = ["bevy", "shader"]
categories = [ "game-development" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.9.1", features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_pbr"
]}
wgpu-types = "0.14.1"
bevy_mod_picking = { git = "https://github.com/aevyrie/bevy_mod_picking", optional = true }
[features]
default = [ ]
picking = [ "bevy_mod_picking" ]
[dev-dependencies]
bevy = { version = "0.9.1", features = [ "dynamic" ]}
[[example]]
name = "scene"
path = "examples/scene.rs"
[[example]]
name = "picking"
path = "examples/picking.rs"
required-features = [ "picking" ]