| 1 |
[package] |
| 2 |
name = "shop-render" |
| 3 |
version = "0.1.0" |
| 4 |
description = "wgpu text/quad renderer for shop (font-agnostic; owns atlas + pipeline)" |
| 5 |
edition.workspace = true |
| 6 |
rust-version.workspace = true |
| 7 |
authors.workspace = true |
| 8 |
repository.workspace = true |
| 9 |
license.workspace = true |
| 10 |
publish = false |
| 11 |
|
| 12 |
[lints] |
| 13 |
workspace = true |
| 14 |
|
| 15 |
[dependencies] |
| 16 |
wgpu.workspace = true |
| 17 |
swash.workspace = true |
| 18 |
guillotiere.workspace = true |
| 19 |
bytemuck.workspace = true |
| 20 |
anyhow.workspace = true |
| 21 |
fontconfig.workspace = true |
| 22 |
tracing.workspace = true |
| 23 |
|
| 24 |
[dev-dependencies] |
| 25 |
# The bundled face, cut once by the workspace rather than three times. |
| 26 |
shop-font = { path = "../shop-font" } |
| 27 |
|