initial commit - enclose, joinstem, bysize

and tests
This commit is contained in:
Llywelwyn 2023-09-09 02:07:10 +01:00
parent c65c7ec716
commit 51a4925c14
5 changed files with 94 additions and 2 deletions

16
Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "inflect"
version = "0.1.0"
authors = ["Lewis Wynne <lewis@llyw.co.uk>"]
edition = "2021"
publish = false
description = "inflect is a Rust port of the Python inflect library, used to generate plurals, ordinals, indefinite articles, and to convert numbers to words."
homepage = "https://github.com/llywelwyn/inflect_rs"
repository = "https://github.com/llywelwyn/inflect_rs"
readme = "README.md"
keywords = ["inflect", "plural", "ordinal", "pluralize", "formatting"]
categories = ["text-processing", "value-formatting"]
license = "MIT"
[dependencies]
regex = {version = "1.9.5"}