[package]
edition = "2021"
name = "tiptap-rusty-parser"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast schema-agnostic parser and manipulator for Tiptap/ProseMirror JSONContent documents"
readme = "README.md"
keywords = [
"tiptap",
"prosemirror",
"json",
"parser",
"editor",
]
categories = [
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/alexvcasillas/tiptap-rusty-parser"
[lib]
name = "tiptap_rusty_parser"
path = "src/lib.rs"
[[test]]
name = "content"
path = "tests/content.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "html"
path = "tests/html.rs"
[[test]]
name = "mutate"
path = "tests/mutate.rs"
[[test]]
name = "normalize"
path = "tests/normalize.rs"
[[test]]
name = "path"
path = "tests/path.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "range"
path = "tests/range.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[[test]]
name = "select"
path = "tests/select.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[test]]
name = "transform"
path = "tests/transform.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dependencies.unicode-segmentation]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
[profile.release]
lto = true
codegen-units = 1