-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.09 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
[package]
name = "bevy_keith"
version = "0.1.0"
authors = ["Jerome Humbert <[email protected]>"]
edition = "2021"
resolver = "2"
description = "2D graphics library for the Bevy game engine"
repository = "https://github.com/djeedai/bevy_keith"
homepage = "https://github.com/djeedai/bevy_keith"
documentation = "https://docs.rs/bevy_keith"
keywords = ["bevy", "graphics", "2d"]
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = [".github", "media/*.gif"]
[dependencies]
bevy = { version = "0.14", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_render", "bevy_text", "bevy_sprite"] }
bytemuck = { version = "1", features = ["derive"] }
bitflags = "2.3"
ab_glyph = "0.2"
glyph_brush_layout = "0.2"
[dev-dependencies]
bevy-inspector-egui = "0.25"
[[example]]
name = "quad"
required-features = [ "bevy/bevy_winit", "bevy/png" ]
[[example]]
name = "text"
required-features = [ "bevy/bevy_winit", "bevy/png" ]
[[example]]
name = "ui"
required-features = [ "bevy/bevy_winit", "bevy/png" ]
[[example]]
name = "alpha"
required-features = [ "bevy/bevy_winit", "bevy/png" ]