[[bin]]
name = "uroman-rs"
path = "src/main.rs"
required-features = ["cli"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5.43"
[dependencies.dirs]
optional = true
version = "6.0.0"
[dependencies.indexmap]
version = "2.10.0"
[dependencies.num-rational]
features = ["serde"]
version = "0.4.2"
[dependencies.ordered-float]
version = "5.0.0"
[dependencies.phf]
features = ["macros"]
version = "0.12.1"
[dependencies.regex]
version = "1.11.1"
[dependencies.rustyline]
features = ["derive"]
optional = true
version = "17.0.0"
[dependencies.serde]
features = ["derive"]
version = "1.0.219"
[dependencies.serde_json]
version = "1.0.142"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.unicode-normalization]
version = "0.1.19"
[dependencies.unicode-properties]
version = "0.1.3"
[dependencies.unicode-segmentation]
version = "1.12.0"
[dependencies.unicode-width]
optional = true
version = "0.2.1"
[dependencies.unicode_names2]
version = "2.0.0"
[dev-dependencies.assert_cmd]
version = "2.0.17"
[dev-dependencies.predicates]
version = "3.1.3"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "process_file"
path = "examples/process_file.rs"
[features]
cli = ["dep:clap", "dep:rustyline", "dep:dirs", "dep:unicode-width"]
default = ["cli"]
[lib]
name = "uroman"
path = "src/lib.rs"
[package]
authors = ["fulm-o <fulmlumo@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "text-processing"]
description = "A blazingly fast, self-contained Rust reimplementation of the uroman universal romanizer."
edition = "2024"
keywords = ["uroman", "romanization", "unicode", "nlp", "cli"]
license = "Apache-2.0"
name = "uroman"
readme = "README.md"
repository = "https://github.com/fulm-o/uroman-rs"
version = "0.4.1"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
harness = true
name = "unit_test"
path = "tests/unit_tests.rs"