-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
35 lines (31 loc) · 821 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
[package]
name = "meshtext"
version = "0.3.1"
edition = "2021"
exclude = ["benches/*", "assets/*"]
description = "Generate vertex-vertex meshes from text."
readme = "README.md"
repository = "https://github.com/FrankenApps/meshtext"
license = "MIT OR Apache-2.0"
keywords = ["graphics", "gamedev", "delaunay", "render", "triangulation"]
categories = ["graphics", "game-development", "rendering"]
[dependencies]
cdt = "0.1.0"
glam = "0.29"
owned_ttf_parser = { version = "0.25", optional = true }
ttf-parser = "0.25"
[features]
default = []
owned = ["dep:owned_ttf_parser"]
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
gltf-json = "1"
gltf = "1"
plotters = "0.3"
pollster = "0.4"
wgpu = "23"
winit = "0.30"
[[bench]]
name = "bench_main"
path = "benches/bench_main.rs"
harness = false