[package]
edition = "2021"
rust-version = "1.75"
name = "hwp2md"
version = "0.2.0"
authors = ["Mario Cho <hephaex@gmail.com>"]
build = false
exclude = [
".github/",
".history/",
"PLAN.md",
"PROGRESS.md",
"tests/fixtures/",
"benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HWP/HWPX ↔ Markdown bidirectional converter"
homepage = "https://github.com/hephaex/hwp2md"
documentation = "https://docs.rs/hwp2md"
readme = "README.md"
keywords = [
"hwp",
"hwpx",
"markdown",
"converter",
"hangul",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/hephaex/hwp2md"
[lib]
name = "hwp2md"
path = "src/lib.rs"
[[bin]]
name = "hwp2md"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.aes]
version = "0.8"
[dependencies.anyhow]
version = "1"
[dependencies.byteorder]
version = "1.5"
[dependencies.cfb]
version = "0.14"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.comrak]
version = "0.34"
[dependencies.flate2]
version = "1.0"
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.zip]
version = "2.0"
features = ["deflate"]
default-features = false
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true