[package]
edition = "2024"
rust-version = "1.96"
name = "nest-rs-database"
version = "3.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ORM-agnostic data-layer seam for NestRS: the ambient request/job Executor task-local plus the object-safe Executor trait an ORM module implements. SeaORM is the first-party implementation (nest-rs-seaorm), and the trait is public so other stores can be written against it."
homepage = "https://nestrs.dev"
readme = "README.md"
keywords = [
"framework",
"nestrs",
"database",
"orm",
"transaction",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/YV17labs/NestRS"
resolver = "2"
[lib]
name = "nest_rs_database"
path = "src/lib.rs"
[dependencies.tokio]
version = "1.53"
features = ["full"]
[lints.clippy]
needless_update = "allow"
[lints.rust]
unsafe_code = "forbid"