[package]
edition = "2021"
name = "k2f_docx"
version = "0.2.3"
authors = ["K2F Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "K2F lock → DOCX exporter"
homepage = "https://github.com/suzheng/k2f"
documentation = "https://docs.rs/k2f_docx"
readme = "README.md"
keywords = [
"k2f",
"docx",
"word",
"export",
]
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/suzheng/k2f"
[lib]
name = "k2f_docx"
path = "src/lib.rs"
[[bin]]
name = "k2f-docx"
path = "src/main.rs"
[[test]]
name = "step1_skeleton"
path = "tests/step1_skeleton.rs"
[[test]]
name = "step2_text"
path = "tests/step2_text.rs"
[[test]]
name = "step3_shape_picture"
path = "tests/step3_shape_picture.rs"
[[test]]
name = "step3_zorder"
path = "tests/step3_zorder.rs"
[[test]]
name = "step4_table"
path = "tests/step4_table.rs"
[[test]]
name = "step5_effects"
path = "tests/step5_effects.rs"
[[test]]
name = "step6_corpus"
path = "tests/step6_corpus.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.image]
version = "=0.25.6"
features = ["png"]
default-features = false
[dependencies.k2f_core]
version = "0.2.3"
[dependencies.k2f_paint]
version = "0.2.3"
[dependencies.thiserror]
version = "1.0"
[dependencies.ttf-parser]
version = "0.21"
[dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false