1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
[dependencies]
pyo3 = {version = "0.27.1", features = ["extension-module", "abi3-py310", "generate-import-lib"]}
unicode-segmentation = "1.12.0"
unicode-width = "0.2.2"
[lib]
crate-type = ["cdylib"]
name = "unicode_segmentation_rs"
[package]
authors = ["Michal Čihař <michal@weblate.org>"]
description = "Unicode segmentation and width for Python using Rust"
edition = "2024"
license = "MIT"
name = "unicode-segmentation-rs"
readme = "README.md"
repository = "https://github.com/WeblateOrg/unicode-segmentation-rs"
version = "0.2.0"
|