diff --git a/README.md b/README.md index 3752dee..653748e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/itsmeadarsh2008/flpc) ![PyPI - Downloads](https://img.shields.io/pypi/dm/flpc)
-A Rust-based regex port for Python3 to faster performance. 👾 +A Rust-based regex port 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 `find_match` diff --git a/pyproject.toml b/pyproject.toml index cec21d3..1fdb0f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.maturin] name = "flpc" -version = "0.1.0" +version = "0.1.1" description = "A Rust-based regex port for Python3 to faster performance. 👾" authors = ["Adarsh Gourab Mahalik gourabmahalikadarsh@gmail.com"] readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 34535be..551e8bb 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 faster performance. 👾", + "A Rust-based regex port for Python3 to get faster performance. 👾", )?; m.add("__name__", "flpc")?; m.add("__package__", "flpc")?;