[package]
edition = "2021"
name = "prosemirror"
version = "0.5.2"
authors = [
"Johannes Wilm <johannes@fiduswriter.org>",
"Mustafa J <mustafa.0x@gmail.com>",
"Daniel Seiler <me@dseiler.eu>",
]
build = false
exclude = [
"tests/spec/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of ProseMirror's document model and transform pipeline"
homepage = "https://github.com/fiduswriter/prosemirror-rs"
documentation = "https://docs.rs/prosemirror"
readme = "README.md"
keywords = [
"prosemirror",
"collaborative",
"editor",
"document",
"transform",
]
categories = [
"text-editors",
"web-programming",
"data-structures",
]
license = "MIT"
repository = "https://github.com/fiduswriter/prosemirror-rs"
[lib]
name = "prosemirror"
path = "src/lib.rs"
[[test]]
name = "test_mapping"
path = "tests/test_mapping.rs"
[[test]]
name = "test_parity"
path = "tests/test_parity.rs"
[[test]]
name = "test_replace_around"
path = "tests/test_replace_around.rs"
[[test]]
name = "test_resolve"
path = "tests/test_resolve.rs"
[[test]]
name = "test_transform_wrap"
path = "tests/test_transform_wrap.rs"
[dependencies.derivative]
version = "2.2.0"
[dependencies.derive-new]
version = "0.5"
[dependencies.displaydoc]
version = "0.2"
[dependencies.indexmap]
version = "2.14.0"
features = ["serde"]
[dependencies.serde]
version = "1.0.97"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.53"
features = ["preserve_order"]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies]