Procedural macros for RustORM.
Provides derive macros for automatically implementing ORM traits on your structs.
Not intended to be used directly — use the [`rustorm`](https://crates.io/crates/rustorm) crate instead.
```rust
use rustorm::Model;
pub struct User {
}
```