easydoc 0.1.0

A Rust library for easy DOC/DOCX document operations — read, write, template fill, Markdown conversion, and streaming event processing
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.88"
name = "easydoc"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for easy DOC/DOCX document operations — read, write, template fill, Markdown conversion, and streaming event processing"
readme = "README.md"
keywords = [
    "docx",
    "doc",
    "word",
    "document",
    "office",
]
categories = [
    "encoding",
    "parser-implementations",
    "text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/easy-4-rust/easydoc-rust"

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

[[test]]
name = "coverage_boost_test"
path = "tests/coverage_boost_test.rs"

[[test]]
name = "facade_api_tests"
path = "tests/facade_api_tests.rs"

[[test]]
name = "facade_test"
path = "tests/facade_test.rs"

[[test]]
name = "golden_test"
path = "tests/golden_test.rs"

[[test]]
name = "roundtrip_proptest"
path = "tests/roundtrip_proptest.rs"

[[test]]
name = "writer_test"
path = "tests/writer_test.rs"

[[bench]]
name = "read_write"
path = "benches/read_write.rs"
harness = false

[dependencies.easydoc-core]
version = "0.1.0-alpha.2"

[dependencies.easydoc-derive]
version = "0.1.0-alpha.2"

[dependencies.easydoc-markdown]
version = "0.1.0-alpha.2"

[dependencies.easydoc-ooxml]
version = "0.1.0-alpha.2"

[dependencies.easydoc-reader]
version = "0.1.0-alpha.2"

[dependencies.easydoc-template]
version = "0.1.0-alpha.2"

[dependencies.easydoc-writer]
version = "0.1.0-alpha.2"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.easydoc-core]
version = "0.1.0-alpha.2"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.150"

[dev-dependencies.tempfile]
version = "3.27.0"

[dev-dependencies.zip]
version = "8.6.0"
features = ["deflate"]
default-features = false

[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
no_effect_underscore_binding = "allow"
too_many_lines = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
wrong_self_convention = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"