-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (36 loc) · 994 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
38
39
40
41
42
[package]
authors = ["SET001 <settydark@gmail.com>"]
categories = ["game-development"]
description = "Scroller plugin for Bevy"
edition = "2021"
exclude = ["assets", "examples"]
keywords = ["bevy", "scroller"]
license = "MIT OR Apache-2.0"
name = "bevy_scroller"
readme = "README.md"
repository = "https://github.com/SET001/bevy_scroller"
version = "0.4.0"
[dependencies]
bevy = { version = "0.13.2", default-features = false, features = [
"bevy_sprite",
] }
bevy_editor_pls = { version = "0.8.1", optional = true }
fast_poisson = { version = "1.0.0", features = [
"single_precision",
], optional = true }
rand = "0.8.5"
[features]
dev = ["bevy/bevy_gizmos", "bevy/dynamic_linking", "dep:bevy_editor_pls"]
poisson = ["dep:fast_poisson"]
[dev-dependencies]
iyes_perf_ui = {version="0.2.3"}
rstest = "0.18.2"
[profile.dev]
incremental = true
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[[example]]
name = "poisson"
required-features = ["poisson"]
path = "examples/poisson/rs"