-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
42 lines (37 loc) · 812 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]
name = "bevy_text_mesh"
version = "0.9.0"
edition = "2021"
description = "A bevy 3D text mesh generator for displaying text"
repository = "https://github.com/blaind/bevy_text_mesh"
keywords = ["bevy"]
categories = ["game-engines"]
license = "MIT"
readme = "README.md"
[dependencies]
ttf2mesh = "0.2.0"
bitflags = "2.1"
anyhow = "1.0"
glyph_brush_layout = "0.2.3"
[dependencies.bevy]
version = "0.12.0"
default-features = false
features = ["bevy_render", "bevy_text", "bevy_pbr", "bevy_asset", "bevy_sprite"]
[dev-dependencies]
rand = "0.8.4"
[dev-dependencies.bevy]
version = "0.12.0"
default-features = false
features = [
"bevy_winit",
"bevy_render",
"bevy_text",
"bevy_pbr",
"bevy_core_pipeline",
"bevy_sprite",
"x11",
"tonemapping_luts",
]
[features]
default = []
unstable = []