From 545dfa066d6627ce5d2c5c25485f20041620d75e Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Fri, 1 Aug 2025 09:26:00 +0200 Subject: [PATCH] docs(README): clarify async support for Diesel Fixes #2 --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8d17b1a..6570f21 100644 --- a/README.md +++ b/README.md @@ -554,12 +554,14 @@ cargo run help # For a list of all available actions | Feature | Georm | SeaORM | Diesel | |----------------------|-------|--------|--------| -| Compile-time safety | ✅ | ✅ | ✅ | -| Relationship support | ✅ | ✅ | ✅ | -| Async support | ✅ | ✅ | ⚠️ | +| Compile-time safety | ✅ | ✅ | ✅ | +| Relationship support | ✅ | ✅ | ✅ | +| Async support | ✅ | ✅ | ⚠️[^1] | | Learning curve | Low | Medium | High | -| Macro simplicity | ✅ | ❌ | ❌ | -| Advanced queries | ❌ | ✅ | ✅ | +| Macro simplicity | ✅ | ❌ | ❌ | +| Advanced queries | ❌ | ✅ | ✅ | + +[^1]: Requires `diesel-async` ## Roadmap