[package]
edition = "2024"
rust-version = "1.95"
name = "braillify"
version = "2.0.1"
authors = ["JeongMin Oh <owjs39@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust 기반 크로스플랫폼 한국어 점역 라이브러리"
homepage = "https://braillify.kr"
documentation = "https://braillify.kr"
readme = "README.md"
keywords = [
"braillify",
"braille",
"korean",
"translation",
]
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/dev-five-git/braillify"
[features]
cli = [
"clap",
"anyhow",
"rustyline",
]
default = ["cli"]
dhat-heap = ["dep:dhat"]
wasm = []
[lib]
name = "braillify"
path = "src/lib.rs"
[[bin]]
name = "braillify"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "coverage_extra"
path = "tests/coverage_extra.rs"
[[test]]
name = "coverage_extra2"
path = "tests/coverage_extra2.rs"
[[bench]]
name = "encode_math"
path = "benches/encode_math.rs"
harness = false
[[bench]]
name = "encode_native"
path = "benches/encode_native.rs"
harness = false
[[bench]]
name = "memory_dhat"
path = "benches/memory_dhat.rs"
harness = false
[[bench]]
name = "synthetic"
path = "benches/synthetic.rs"
[dependencies.anyhow]
version = "1.0.102"
optional = true
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
optional = true
[dependencies.dhat]
version = "0.3.3"
optional = true
[dependencies.once_cell]
version = "1.21.4"
[dependencies.phf]
version = "0.13.1"
features = ["macros"]
[dependencies.regex]
version = "1.12.3"
[dependencies.rustyline]
version = "18.0.0"
optional = true
[dependencies.unicode-normalization]
version = "0.1.25"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.escargot]
version = "0.5.15"
[dev-dependencies.insta]
version = "1.47"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.serde_json]
version = "1.0.150"
[target."cfg(windows)".build-dependencies.embed-manifest]
version = "1.5.0"