-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
30 lines (27 loc) · 837 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
[package]
name = "wgpu_text"
authors = ["Leon (Blatko1)"]
version = "0.9.1"
edition = "2021"
description = "A simple 2D text renderer for wgpu"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Blatko1/wgpu-text"
keywords = ["wgpu", "text", "ttf", "render", "font"]
categories = ["graphics", "rendering"]
include = ["src/**/*", "LICENSE", "Cargo.toml", "README.md", ".gitignore"]
[dependencies]
wgpu = { version = "23.0.0", default-features = false, features = ["wgsl"]}
glyph_brush = "0.7.11"
log = "0.4.22"
bytemuck = { version = "1.19.0", features = ["derive"] }
[dev-dependencies]
wgpu = { version = "23.0.0", features = ["spirv"] }
winit = "0.30.5"
pollster = "0.4.0"
env_logger = "0.11.5"
rand = "0.8.5"
nalgebra = "0.33.2"
[[example]]
path = "examples/custom_target/custom_target.rs"
name = "custom_target"