[workspace]
[package]
name = "ormkit"
version = "0.2.1"
edition = "2021"
description = "Compile-time safe ORM with typed DSL, automatic relationships, multi-tenant support, audit trails, and row-level security"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/ormkit"
readme = "README.md"
keywords = ["orm", "database", "sqlx", "async", "postgres"]
categories = ["database", "asynchronous"]
[dependencies]
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
base64 = "0.22"
ormkit-derive = "0.2.1"
[dev-dependencies]
sqlx-cli = "0.8"