crudcrate-derive
Note: This is the procedural macro component of crudcrate. You should use the main crudcrate crate instead - it re-exports all macros from this crate.
# Use this in your projects:
# NOT this:
Quick Start
See the main crudcrate README for complete documentation and examples.
What This Provides
This crate contains the procedural macros that:
- Generate complete CRUD API models from Sea-ORM entities
- Create HTTP routers for Axum applications
- Provide filtering, sorting, and pagination
- Support relationship loading and database optimizations
All functionality is accessed through the main crudcrate crate:
use EntityToModels; // From this crate
// Macro from this crate
// Attribute from this crate
See the main repository for full documentation.