From 9adea85936aa11179f0396d2d688bc3f0c9ab4fd Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Fri, 3 Oct 2025 07:50:53 +0200 Subject: [PATCH] doc: add workspace and project structure information --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6c162d..76878d4 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,19 @@ A Rust EAV data model implementation Learn more on EAV data model [here](https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model). -## Project Structure +## Workspace Structure -... +- **01.workspace**: this folder contains all workspace crates + +## heave crate structure + +- **src/fun**: contains all functions +- **src/imp**: contains all implementation (impl blocks) +- **src/mcr**: contains all macros +- **src/str**: contains all structures +- **src/trt**: contains all traits +- **src/tst**: contains all tests +- **lib.rs**: renames and re-exports code compnents ## Example