musty

Crates.iomusty
lib.rsmusty
version0.5.2
sourcesrc
created_at2023-01-19 08:33:58.417916
updated_at2023-01-19 20:46:40.005207
descriptionAn ODM for NoSQL databases like MongoDB
homepage
repositoryhttps://github.com/tsanga/musty
max_upload_size
id762396
size78,477
Alex Adewole (bizarre)

documentation

README

musty is an asynchronous object-document mapper library for Rust. It turns your struct's into queryable database models.

Features

  • Typed model filter/querying language via filter!() macro.
  • Support for multiple different database backends.
  • Automatically handles serializing, deserializing, id mapping, & more.
  • Straight-forward integration, requiring little change to your data structs.
  • Focus on extendability, underlying database driver is always available for advanced querying.
  • Easily define indexes and dynamic get_by functions using the #[musty()] macro.

Why use musty?

  • Spend less time building an ODM and more time building your app.
  • Leverage typed database-agnostic document queries using the filter!() macro.
  • Ability to switch to a different database backend down the line with little to no code changes.

Getting Started

musty is designed to integrate with little friction (i.e: not enforcing specific types to be used, etc), for how to get started using musty, check out the quick start.

Commit count: 43

cargo fmt