[package]
edition = "2021"
rust-version = "1.88"
name = "iced_math"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native LaTeX math widget for Iced 0.14 — pure Rust, zero JS"
readme = "README.md"
keywords = [
"iced",
"math",
"latex",
"katex",
"tex",
]
categories = [
"gui",
"rendering",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/minchenlee/iced_math"
[lib]
name = "iced_math"
path = "src/lib.rs"
[[example]]
name = "to_svg"
path = "examples/to_svg.rs"
[[example]]
name = "viewer"
path = "examples/viewer.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "pixel_snapshots"
path = "tests/pixel_snapshots.rs"
[[test]]
name = "svg_snapshots"
path = "tests/svg_snapshots.rs"
[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false
[dependencies.iced]
version = "0.14"
features = [
"svg",
"advanced",
"thread-pool",
]
default-features = false
[dependencies.pulldown-latex]
version = "0.7"
[dependencies.ttf-parser]
version = "0.25"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.iced]
version = "0.14"
features = [
"wgpu",
"tiny-skia",
"thread-pool",
"x11",
]
default-features = false
[dev-dependencies.insta]
version = "1"
features = [
"yaml",
"glob",
]
[dev-dependencies.resvg]
version = "0.46"
[dev-dependencies.tiny-skia]
version = "0.11"