generated from phundrak/rust-poem-openapi-template
This commit renames gejdr-crud to georm for an easier name to remember in case I publish `georm` and `georm-macros`. This commit extracts the `Georm` (formerly `Crud`) trait from `gejdr-core` to its dedicated crate `georm` on which gejdr-core now depends. Currently writing tests
22 lines
654 B
TOML
22 lines
654 B
TOML
[package]
|
|
name = "georm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Lucien Cartier-Tilet <lucien@phundrak.com>"]
|
|
description = "A small, opiniated ORM for SQLx and PostgreSQL"
|
|
homepage = "https://labs.phundrak.com/phundrak/gejdr-rs"
|
|
repository = "https://labs.phundrak.com/phundrak/gejdr-rs"
|
|
license = "MIT OR GPL-3.0-or-later"
|
|
keywords = ["sqlx", "orm", "postgres", "postgresql", "database", "async"]
|
|
categories = ["database"]
|
|
|
|
[dependencies]
|
|
georm-macros = { path = "../georm-macros" }
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.8.3"
|
|
default-features = false
|
|
features = ["postgres", "runtime-tokio", "macros", "migrate"]
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid" |