├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.rst ├── benchmarks ├── benchmark_result.txt ├── requirements.txt └── test_benchmark.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── fastcrc ├── __info__.py ├── __init__.py ├── crc16.py ├── crc32.py ├── crc64.py ├── crc8.py └── py.typed ├── pyproject.toml ├── src └── lib.rs ├── tea.yaml └── tests └── test_fastcrc.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/README.rst -------------------------------------------------------------------------------- /benchmarks/benchmark_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/benchmarks/benchmark_result.txt -------------------------------------------------------------------------------- /benchmarks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/benchmarks/requirements.txt -------------------------------------------------------------------------------- /benchmarks/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/benchmarks/test_benchmark.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx -------------------------------------------------------------------------------- /fastcrc/__info__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/__info__.py -------------------------------------------------------------------------------- /fastcrc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/__init__.py -------------------------------------------------------------------------------- /fastcrc/crc16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/crc16.py -------------------------------------------------------------------------------- /fastcrc/crc32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/crc32.py -------------------------------------------------------------------------------- /fastcrc/crc64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/crc64.py -------------------------------------------------------------------------------- /fastcrc/crc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/fastcrc/crc8.py -------------------------------------------------------------------------------- /fastcrc/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/tea.yaml -------------------------------------------------------------------------------- /tests/test_fastcrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overcat/fastcrc/HEAD/tests/test_fastcrc.py --------------------------------------------------------------------------------