[package]
name = "floz-orm"
version = "0.1.0"
edition = "2021"
description = "A lightweight, typesafe Rust ORM — unifying DAO and DSL from a single schema"
authors = ["Floz Team"]
license = "MIT"
repository = "https://github.com/floz-rs/floz"
[dependencies]
floz-macros = "0.1.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "chrono", "uuid", "json"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }