-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
37 lines (30 loc) · 971 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-parallax"
version = "0.11.0"
authors = ["Carlo Supina <[email protected]>"]
edition = "2021"
description = "A Bevy plugin for creating a parallax effect."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Corrosive-Games/bevy-parallax"
categories = ["game-development", "games"]
keywords = ["bevy", "gamedev", "parallax", "scrolling", "background"]
exclude = ["assets/*"]
[dependencies]
serde = { version = "1.0.180", optional = false }
bevy-inspector-egui = { version = "0.28", optional = true }
[dependencies.bevy]
version = "0.15.0"
default-features = false
features = ["bevy_render", "bevy_core_pipeline", "bevy_sprite", "bevy_asset", "bevy_window"]
[dev-dependencies]
bevy-inspector-egui = "0.28"
ron = "0.8.0"
[dev-dependencies.bevy]
version = "0.15"
default-features = false
features = ["x11", "png"]
[package.metadata.docs.rs]
features = ["bevy/x11"]
[features]
bevy-inspector-egui = ["dep:bevy-inspector-egui"]