From 44139cd1ab29e7d888b01e450afc823de4656c12 Mon Sep 17 00:00:00 2001 From: Kunjan Dalal Date: Wed, 22 Dec 2021 17:26:33 +0530 Subject: [PATCH] Added another ORM option which is build on SQLx --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe89e37a1d..09d5b38631 100644 --- a/README.md +++ b/README.md @@ -197,11 +197,11 @@ some info on) your SQL queries. This has some potentially surprising implication - Due to the different amount of information databases let you retrieve about queries, the extent of SQL verification you get from the query macros depends on the database -**If you are looking for an (asynchronous) ORM,** you can check out [`ormx`], which is built on top +**If you are looking for an (asynchronous) ORM,** you can check out [`ormx`] or [`SeaORM`], which is built on top of SQLx. [`ormx`]: https://crates.io/crates/ormx - +[`SeaORM`]: https://github.com/SeaQL/sea-orm ## Usage See the `examples/` folder for more in-depth usage.