Skip to content

Commit

Permalink
Fix CI + Typo + REMOVED MUSL
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeadarsh2008 committed Jun 14, 2024
1 parent 6feec1f commit 033ed4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) <br>

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`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")?;
Expand Down

0 comments on commit 033ed4f

Please sign in to comment.