gremlin-orm 0.1.0

A lightweight, ORM for PostgreSQL, built on top of SQLx.
Documentation
[package]
name = "gremlin-orm"
description = "A lightweight, ORM for PostgreSQL, built on top of SQLx."
homepage = "https://github.com/nils-degroot/gremlin-orm"
repository = "https://github.com/nils-degroot/gremlin-orm"
readme = "README.md"
authors = ["Nils de Groot <nils@peeko.nl>"]
version = "0.1.0"
edition = "2024"
license-file = "LICENSE"
keywords = ["database"]
categories = ["database"]

[workspace]
resolver = "2"
members = [
	".",
	"./gremlin-orm-macro/"
]

[dependencies]
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
futures = "0.3.31"
gremlin-orm-macro = "0.1.0"

[dev-dependencies]
tokio = { version = "1.46.1", features = ["full"] }
assert2 = "0.3.16"