diff --git a/README.md b/README.md index c14ae9e..84b501a 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,13 @@ # flpc -![PyPI - Implementation](https://img.shields.io/pypi/implementation/flpc) -![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/itsmeadarsh2008/flpc) -![PyPI - Downloads](https://img.shields.io/pypi/dm/flpc) +Star +PyPI - Implementation +GitHub Issues or Pull Requests +PyPI - Downloads -A Rust-based regex port for Python3 to get faster performance. 👾 + +A Rust-based **[regex crate](https://crates.io/crates/regex) wrapper** for Python3 to get faster performance. 👾 ## DEAD-SIMPLE Just import `flpc` as `re` and use it as you like and the namings are same as the native `re` module. Only thing is that `match` function name of the `re` native library is replaced with `fmatch` diff --git a/pyproject.toml b/pyproject.toml index 8912a4d..b10033b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "flpc" -version = "0.1.2" -description = "A Rust-based regex port for Python3 to faster performance. 👾" +version = "0.1.3" +description = "A Rust-based regex crate wrapper for Python3 to get faster performance. 👾" maintainers = [{ name = "Adarsh Gourab Mahalik", email = "gourabmahalikadarsh@gmail.com" }] readme = "README.md" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index b2f6078..906a51e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -152,7 +152,7 @@ fn flpc(m: &Bound<'_, PyModule>) -> PyResult<()> { m.add("__version__", "0.1.0")?; m.add( "__doc__", - "A Rust-based regex port for Python3 to get faster performance. 👾", + "A Rust-based regex crate wrapper for Python3 to get faster performance. 👾", )?; m.add("__name__", "flpc")?; m.add("__package__", "flpc")?;