# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "meshtext" version = "0.3.1" build = false exclude = [ "benches/*", "assets/*", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Generate vertex-vertex meshes from text." readme = "README.md" keywords = [ "graphics", "gamedev", "delaunay", "render", "triangulation", ] categories = [ "graphics", "game-development", "rendering", ] license = "MIT OR Apache-2.0" repository = "https://github.com/FrankenApps/meshtext" [lib] name = "meshtext" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" [[example]] name = "gltf" path = "examples/gltf.rs" [[example]] name = "gltf_indices" path = "examples/gltf_indices.rs" [[example]] name = "indices" path = "examples/indices.rs" [[example]] name = "owned" path = "examples/owned.rs" [[example]] name = "wgpu" path = "examples/wgpu.rs" [[example]] name = "wgpu_indices" path = "examples/wgpu_indices.rs" [[test]] name = "optimizer" path = "tests/optimizer.rs" [[test]] name = "outline" path = "tests/outline.rs" [[test]] name = "util" path = "tests/util.rs" [dependencies.cdt] version = "0.1.0" [dependencies.glam] version = "0.29" [dependencies.owned_ttf_parser] version = "0.25" optional = true [dependencies.ttf-parser] version = "0.25" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.gltf] version = "1" [dev-dependencies.gltf-json] version = "1" [dev-dependencies.plotters] version = "0.3" [dev-dependencies.pollster] version = "0.3" [dev-dependencies.wgpu] version = "0.18" [dev-dependencies.winit] version = "0.28" [features] default = [] owned = ["dep:owned_ttf_parser"]