bymsdfgen-core 0.1.1

Pure-Rust msdf generator core: multi-channel signed distance field generation, a data-oriented reimplementation of msdfgen
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "bymsdfgen-core"
version = "0.1.1"
authors = ["Briany4717"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust msdf generator core: multi-channel signed distance field generation, a data-oriented reimplementation of msdfgen"
homepage = "https://github.com/Briany4717/bymsdfgen"
readme = "README.md"
keywords = [
    "msdf",
    "sdf",
    "font",
    "rendering",
    "msdfgen",
]
categories = [
    "rendering::graphics-api",
    "game-engines",
]
license = "MIT"
repository = "https://github.com/Briany4717/bymsdfgen"
resolver = "2"

[features]
default = ["parallel"]
parallel = ["dep:rayon"]

[lib]
name = "bymsdfgen_core"
path = "src/lib.rs"

[dependencies.arrayvec]
version = "0.7"

[dependencies.rayon]
version = "1.10"
optional = true

[dev-dependencies]