ormkit 0.2.1

Compile-time safe ORM with typed DSL, automatic relationships, multi-tenant support, audit trails, and row-level security
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ormkit"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile-time safe ORM with typed DSL, automatic relationships, multi-tenant support, audit trails, and row-level security"
readme = "README.md"
keywords = [
    "orm",
    "database",
    "sqlx",
    "async",
    "postgres",
]
categories = [
    "database",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/ormkit"

[lib]
name = "ormkit"
path = "src/lib.rs"

[[example]]
name = "query_builder_demo"
path = "examples/query_builder_demo.rs"

[[example]]
name = "quick-start"
path = "examples/quick-start.rs"

[[example]]
name = "relationships_demo"
path = "examples/relationships_demo.rs"

[[example]]
name = "typed_dsl_demo"
path = "examples/typed_dsl_demo.rs"

[dependencies.anyhow]
version = "1"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.ormkit-derive]
version = "0.2.1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio-rustls",
    "postgres",
    "chrono",
    "uuid",
    "json",
]

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.sqlx-cli]
version = "0.8"