From 2fa3e423e52218a2dab8a5e35c5f8e17c92232ba Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Wed, 29 Oct 2025 14:32:14 +0100 Subject: [PATCH] chore: add warning for missing documentation --- 01.workspace/heave/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/01.workspace/heave/src/lib.rs b/01.workspace/heave/src/lib.rs index 796170a..ed8b9a0 100644 --- a/01.workspace/heave/src/lib.rs +++ b/01.workspace/heave/src/lib.rs @@ -1,3 +1,4 @@ +#![warn(missing_docs)] //! A lightweight and intuitive Entity-Attribute-Value (EAV) database library for Rust. //! //! This library provides a simple and thread safe way to persist and query semi-structured data using an EAV model on top of a SQLite database. It is designed to be easy to use, with a focus on simplicity and developer experience.