This pull request includes significant updates to the `mixemy` library, focusing on improving documentation, enhancing configuration, and refactoring the codebase to remove deprecated components.
Documentation and Examples:
* [`README.md`](diffhunk://diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L10-R18): Expanded documentation to include both synchronous and asynchronous examples, detailed explanations, and a new section on CI/CD setup. [[1]](diffhunk://diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L10-R18) [[2]](diffhunk://diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L30-R229) [[3]](diffhunk://diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R245-R257)
Configuration Updates:
* [`.pre-commit-config.yaml`](diffhunk://diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9L3-R3): Updated `ruff-pre-commit` hook version from `v0.8.4` to `v0.9.1`.
* [`.vscode/settings.json`](diffhunk://diff-a5de3e5871ffcc383a2294845bd3df25d3eeff6c29ad46e3a396577c413bf357R1-R17): Added settings for Python formatting, code actions on save, and testing configurations.
* [`pyproject.toml`](diffhunk://diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711L3-R3): Updated dependencies, added optional dependencies for `fastapi`, and included new testing libraries. [[1]](diffhunk://diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711L3-R3) [[2]](diffhunk://diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711L25-R69)
Codebase Refactoring:
* Removed the `crud` module and its associated classes (`AuditCRUD`, `IdCRUD`, `IdAuditCRUD`) in favor of the new repository and service pattern. [[1]](diffhunk://diff-469e607f15fb5780d226395a3a5e873bf80dbfa32f26ef4d2c1e2eb11e59ed2bL1-L5) [[2]](diffhunk://diff-27119a1654688b458f69e0fa4cffcd4d08b5bba2abe1a37ecdb59929fd31a0fdL1-L35) [[3]](diffhunk://diff-58857a20d546b413ce686684d58e161f3ce72d9e6c92548a066147fde65188ccL1-L54) [[4]](diffhunk://diff-2bea5b7c79fae8d502e90e15de8dcd2bb32cb186a86e9eafa8edbb8e06a2e1fdL1-L134)
* [`src/mixemy/__init__.py`](diffhunk://diff-3c72bb468b21a99b1d94b57d3c6bdbb6e8462243b5bc426c671fc82dc1622d67L3-R5): Updated imports to reflect the removal of the `crud` module and inclusion of `repositories`.
* Added new exception classes in `src/mixemy/_exceptions.py` to handle setup errors for repositories and services.
Version Update:
* [`pyproject.toml`](diffhunk://diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711L3-R3): Incremented the version from `0.1.2` to `0.2.0` to reflect the significant changes and improvements.