[package]
edition = "2021"
name = "floz-orm"
version = "0.1.7"
authors = ["Floz Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, typesafe Rust ORM — unifying DAO and DSL from a single schema"
homepage = "https://floz.pro"
documentation = "https://orm.floz.pro"
readme = false
license = "MIT"
repository = "https://github.com/floz-rs/floz-orm"
[features]
default = []
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]
[lib]
name = "floz_orm"
path = "src/lib.rs"
[[test]]
name = "adv_features_test"
path = "tests/adv_features_test.rs"
[[test]]
name = "dao_test"
path = "tests/dao_test.rs"
[[test]]
name = "migration_test"
path = "tests/migration_test.rs"
[[test]]
name = "model_test"
path = "tests/model_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.floz-macros]
version = "0.1.7"
[dependencies.floz-macros-core]
version = "0.1.7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls",
"chrono",
"uuid",
"json",
"runtime-tokio",
"tls-rustls",
"chrono",
"uuid",
"json",
]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls",
"chrono",
"uuid",
"json",
"sqlite",
]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
"test-util",
]
[dev-dependencies.utoipa]
version = "5.4.0"
features = [
"default",
"chrono",
"time",
"uuid",
"url",
"smallvec",
]