From 078645fd0e95da60c97cee480664b6e7f1586810 Mon Sep 17 00:00:00 2001 From: R0DR160HM Date: Fri, 15 May 2026 20:22:37 -0300 Subject: [PATCH] Add database --- README.md | 1 + packages/database.toml | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 packages/database.toml diff --git a/README.md b/README.md index c9225b5..ddebb84 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Looking for something to build? Check out [the suggestions list][suggestions]. ### Databases - [cake](https://github.com/inoas/gleam-cake) - [📚](https://hexdocs.pm/cake/) - An SQL query builder for dialects PostgreSQL, SQLite, MariaDB, and MySQL +- [database](https://github.com/R0DR160HM/database) - [📚](https://hexdocs.pm/database/) - A very simple embedded database built over ETS and DETS - [migrant](https://github.com/aosasona/migrant) - [📚](https://hexdocs.pm/migrant/) - Database migrations for SQLite in Gleam - [mungo](https://github.com/massivefermion/mungo) - [📚](https://hexdocs.pm/mungo/) - A MongoDB driver for Gleam (formerly gleam_mongo) - [parrot](https://github.com/daniellionel01/parrot) - [📚](https://hexdocs.pm/parrot/) - 🦜 type-safe SQL in gleam via sqlc diff --git a/packages/database.toml b/packages/database.toml new file mode 100644 index 0000000..6fcd703 --- /dev/null +++ b/packages/database.toml @@ -0,0 +1,4 @@ +name = "database" +description = "A very simple embedded database built over ETS and DETS" +repo_url = "https://github.com/R0DR160HM/database" +category = "Databases"