readmdict 0.1.0

A Rust implementation for reading MDict dictionary files (.mdx format)
Documentation
[package]
name = "readmdict"
version = "0.1.0"
edition = "2024"
description = "A Rust implementation for reading MDict dictionary files (.mdx format)"
license = "MIT"
repository = "https://github.com/gerenkai/rust-readmdict"
homepage = "https://github.com/gerenkai/rust-readmdict"
readme = "README.md"
keywords = ["mdict", "dictionary", "mdx", "mdd", "parser"]
categories = ["parsing", "text-processing"]

[dependencies]
hex = "0.4"
byteorder = "1.5"
flate2 = "1.0"
regex = "1.10"
encoding_rs = "0.8"
salsa20 = "0.10"
ripemd = "0.1"
sha2 = "0.10"
adler = "1.0"
thiserror = "1.0"
clap = { version = "4.5", features = ["derive"] }  # For CLI

[[example]]
name = "show_mdd"
path = "examples/show_mdd.rs"

[[example]]
name = "play_audio"
path = "examples/play_audio.rs"