unhwp-cli 0.3.2

Command-line tool for converting HWP/HWPX documents to Markdown
[package]
name = "unhwp-cli"
version = "0.3.2"
edition = "2021"
authors = ["iyulab"]
description = "Command-line tool for converting HWP/HWPX documents to Markdown"
license = "MIT"
repository = "https://github.com/iyulab/unhwp"
keywords = ["hwp", "hwpx", "cli", "converter"]
categories = ["command-line-utilities"]

[[bin]]
name = "unhwp"
path = "src/main.rs"

[dependencies]
# Core library
unhwp = { version = "0.3.2", path = ".." }

# CLI argument parsing
clap = { version = "4.5", features = ["derive"] }

# JSON serialization
serde_json = "1.0"

# Self-update from GitHub releases
self_update = { version = "0.41", features = ["archive-zip", "archive-tar", "compression-flate2", "compression-zip-deflate"] }

# HTTP client (used for self_update header types)
reqwest = { version = "0.12", default-features = false }

# Async runtime for self-update
tokio = { version = "1.42", features = ["rt-multi-thread", "macros"] }

# Version comparison
semver = "1.0"

# Progress indicator
indicatif = "0.17"

# Colored output
colored = "2.1"