microrm is a simple object relational manager (ORM) for sqlite that requires no external tooling, keeping all specifications in natural Rust types with no DSLs. Both synchronous and asynchronous modes of operation are supported.
Unlike many fancier ORM systems, microrm is designed to be lightweight, both in terms of runtime overhead and developer LoC. By necessity, it sacrifices flexibility towards these goals, and so can be thought of as more opinionated than, say, SeaORM or Diesel. Major limitations of microrm are:
- slightly clumsy database migration support
- limited vocabulary for describing object-to-object relations
- SQLite processing (including I/O waiting) is done on-thread and is thus blocking
microrm pushes the Rust type system somewhat, so the MSRV is currently 1.82.