georm/Cargo.toml
Lucien Cartier-Tilet 4ff2df1a4e
All checks were successful
CI / tests (push) Successful in 5m18s
chore: bump to 0.1.1
2025-02-01 02:03:43 +01:00

47 lines
1.1 KiB
TOML

[workspace]
members = [".", "georm-macros"]
[workspace.package]
version = "0.1.1"
edition = "2021"
authors = ["Lucien Cartier-Tilet <lucien@phundrak.com>"]
homepage = "https://github.com/Phundrak/georm"
repository = "https://github.com/Phundrak/georm"
license = "MIT OR GPL-3.0-or-later"
keywords = ["sqlx", "orm", "postgres", "postgresql", "database", "async"]
categories = ["database"]
[package]
name = "georm"
readme = "README.md"
description = "Georm, a simple, opiniated SQLx ORM for PostgreSQL"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[workspace.dependencies]
georm-macros = { version = "=0.1.1", path = "georm-macros" }
[workspace.dependencies.sqlx]
version = "0.8.3"
default-features = false
features = ["postgres", "runtime-tokio", "macros", "migrate"]
[dependencies]
sqlx = { workspace = true }
georm-macros = { workspace = true }
[dev-dependencies]
rand = "0.9"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "deny"
pendantic = "deny"
nursery = "deny"