├── .github ├── FUNDING.yml └── workflows │ └── CI.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benchmark └── bench.py ├── examples ├── groups.py └── unicodes.py ├── flpc.pyi ├── pyproject.toml └── src └── lib.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/benchmark/bench.py -------------------------------------------------------------------------------- /examples/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/examples/groups.py -------------------------------------------------------------------------------- /examples/unicodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/examples/unicodes.py -------------------------------------------------------------------------------- /flpc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/flpc.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsmeadarsh2008/flpc/HEAD/src/lib.rs --------------------------------------------------------------------------------