[package]
edition = "2024"
rust-version = "1.88"
name = "easydoc-writer"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DOCX document writer for easydoc-rust"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/easy-4-rust/easydoc-rust"
[lib]
name = "easydoc_writer"
path = "src/lib.rs"
[[test]]
name = "hyperlink_list_roundtrip"
path = "tests/hyperlink_list_roundtrip.rs"
[[test]]
name = "renderer_block_tests"
path = "tests/renderer_block_tests.rs"
[[test]]
name = "table_column_attrs"
path = "tests/table_column_attrs.rs"
[[test]]
name = "writer_logic_tests"
path = "tests/writer_logic_tests.rs"
[dependencies.docx-rs]
version = "0.4"
[dependencies.easydoc-core]
version = "0.1.0-alpha.2"
[dependencies.easydoc-math]
version = "0.1.0-alpha.2"
[dependencies.easydoc-ooxml]
version = "0.1.0-alpha.2"
[dependencies.office_oxide]
version = "0.1"
[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"