Crate hexser_potions

Crate hexser_potions 

Source
Expand description

Hex Potions: ready-to-mix patterns and examples for the hexser crate.

Potions are small, focused, and copy-friendly examples that show how to assemble common hexagonal architecture operations with hexser.

Goals:

  • Demonstrate idiomatic component shapes for common scenarios
  • Stay dependency-free and simple
  • Serve as living documentation you can paste into your app

Featured potions:

  • auth::signup - Minimal signup flow with a repository and directive
  • crud::simple - Simple in-memory CRUD repository example

Usage:

  • Browse modules, copy what you need, and adapt to your domain
  • All examples compile and have tests

Re-exports§

pub use hexser as core;

Modules§

auth
Auth potions: simple signup flow showcasing a Repository and a Directive.
crud
CRUD potions: a minimal in-memory repository for a single entity type.