[package]
edition = "2024"
rust-version = "1.85"
name = "mathtex-editor-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Headless core of the mathtex structural math editor: model, operations, navigation, selection, IR matching"
readme = "README.md"
keywords = [
"math",
"editor",
"latex",
"wysiwyg",
"serde",
]
categories = [
"text-editors",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gabriel-nsiqueira/mathtex-editor"
resolver = "2"
[lib]
name = "mathtex_editor_core"
path = "src/lib.rs"
[dependencies.mathtex-ir]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.slotmap]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"