uroman 0.6.6

A self-contained Rust reimplementation of the uroman universal romanizer.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "uroman"
version = "0.6.6"
authors = ["o24s <fulmlumo@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A self-contained Rust reimplementation of the uroman universal romanizer."
readme = "README.md"
keywords = [
    "uroman",
    "romanization",
    "unicode",
    "nlp",
    "cli",
]
categories = [
    "command-line-utilities",
    "text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/stellanomia/uroman-rs"

[features]
cli = [
    "dep:clap",
    "dep:rustyline",
    "dep:dirs",
    "dep:unicode-width",
]
default = []

[lib]
name = "uroman"
path = "src/lib.rs"

[[bin]]
name = "uroman-rs"
path = "src/main.rs"
required-features = ["cli"]

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

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

[[test]]
name = "test"
path = "tests/test.rs"

[[test]]
name = "unit_test"
path = "tests/unit_tests.rs"
harness = true

[dependencies.clap]
version = "4.6.1"
features = ["derive"]
optional = true

[dependencies.dirs]
version = "6.0.0"
optional = true

[dependencies.num-rational]
version = "0.4.2"
features = ["serde"]

[dependencies.ordered-float]
version = "5.3.0"

[dependencies.phf]
version = "0.13.1"
features = ["macros"]

[dependencies.rayon]
version = "1.12.0"

[dependencies.regex]
version = "1.12.3"

[dependencies.rustyline]
version = "18.0.0"
features = ["derive"]
optional = true

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.150"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.unicode-normalization]
version = "0.1.25"

[dependencies.unicode-properties]
version = "0.1.4"

[dependencies.unicode-segmentation]
version = "1.13.2"

[dependencies.unicode-width]
version = "0.2.2"
optional = true

[dependencies.unicode_names2]
version = "2.0.0"

[dev-dependencies.predicates]
version = "3.1.4"