├── .coveragerc ├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── drf_orjson_renderer ├── __init__.py ├── encoders.py ├── parsers.py └── renderers.py ├── mypy.ini ├── requirements ├── base.txt └── dev.txt ├── setup.py ├── tests ├── __init__.py └── test_renderer.py └── version.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/README.md -------------------------------------------------------------------------------- /drf_orjson_renderer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_orjson_renderer/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/drf_orjson_renderer/encoders.py -------------------------------------------------------------------------------- /drf_orjson_renderer/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/drf_orjson_renderer/parsers.py -------------------------------------------------------------------------------- /drf_orjson_renderer/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/drf_orjson_renderer/renderers.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | 3 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianjbuck/drf_orjson_renderer/HEAD/tests/test_renderer.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.7.3" 2 | --------------------------------------------------------------------------------