[package]
edition = "2021"
name = "uniworld"
version = "0.2.0"
build = false
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Correct Unicode text handling for every script: bidi, line breaking, segmentation, normalization"
readme = "README.md"
license = "MIT"
repository = "https://github.com/aguywithai/uniworld"
[features]
cffi = []
conformance = []
default = []
python = ["dep:pyo3"]
wasm = ["dep:wasm-bindgen"]
[lib]
name = "uniworld"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[test]]
name = "composite_operations"
path = "tests/composite_operations.rs"
[[test]]
name = "conformance_bidi"
path = "tests/conformance_bidi.rs"
[[test]]
name = "conformance_grapheme"
path = "tests/conformance_grapheme.rs"
[[test]]
name = "conformance_linebreak"
path = "tests/conformance_linebreak.rs"
[[test]]
name = "conformance_normalization"
path = "tests/conformance_normalization.rs"
[[test]]
name = "conformance_sentence"
path = "tests/conformance_sentence.rs"
[[test]]
name = "conformance_word"
path = "tests/conformance_word.rs"
[[test]]
name = "dictionary_segmentation"
path = "tests/dictionary_segmentation.rs"
[[test]]
name = "segment_tests"
path = "tests/segment_tests.rs"
[dependencies.pyo3]
version = "0.23"
features = ["extension-module"]
optional = true
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[dev-dependencies]