-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
36 lines (32 loc) · 992 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
[package]
name = "bevy_pixel_camera"
version = "0.13.0"
authors = ["drakmaniso <[email protected]>"]
edition = "2021"
description = "A simple pixel-perfect camera plugin for Bevy, suitable for pixel-art"
readme = "README.md"
repository = "https://github.com/drakmaniso/bevy_pixel_camera"
keywords = ["bevy", "graphics", "2d", "pixels", "pixel-art"]
categories = ["graphics", "game-development"]
exclude = ["assets/**", ".vscode/**"]
license = "MIT OR Apache-2.0"
[dependencies]
bevy = { version = "0.13", default-features = false, features = [
"bevy_core_pipeline",
"bevy_render",
"bevy_sprite",
] }
[dev-dependencies]
bevy = { version = "0.13", default-features = false, features = [
"bevy_winit",
"bevy_asset",
"png",
"multi-threaded",
"x11",
] }
[[example]]
name = "flappin"
required-features = ["bevy/bevy_winit", "bevy/bevy_asset", "bevy/png"]
[[example]]
name = "mire"
required-features = ["bevy/bevy_winit", "bevy/bevy_asset", "bevy/png"]