microrm

Crates.iomicrorm
lib.rsmicrorm
version0.5.0-rc.1
sourcesrc
created_at2022-05-17 06:47:16.472523
updated_at2024-11-10 17:11:34.081132
descriptionLightweight ORM using sqlite as a backend.
homepage
repositoryhttps://git.flying-kestrel.ca/kestrel/microrm
max_upload_size
id588183
size242,917
(flying-kestrel)

documentation

README

docs.rs

microrm is a simple object relational manager (ORM) for sqlite.

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:

  • lack of database migration support
  • limited vocabulary for describing object-to-object relations

microrm pushes the Rust type system somewhat to provide better ergonomics, so the MSRV is currently 1.75. Don't be scared off by the web of traits in the schema module --- you should never need to interact with any of them!

Commit count: 0

cargo fmt