[package]
edition = "2021"
name = "dbkit"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postgres-first async ORM-ish library with type-level loaded/unloaded relations."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/alexeichhorn/rust-dbkit"
[lib]
name = "dbkit"
path = "src/lib.rs"
[[test]]
name = "active_update_partial"
path = "tests/active_update_partial.rs"
[[test]]
name = "derive_ui"
path = "tests/derive_ui.rs"
[[test]]
name = "integration_postgres"
path = "tests/integration_postgres.rs"
[[test]]
name = "joined_sql"
path = "tests/joined_sql.rs"
[[test]]
name = "one_limit"
path = "tests/one_limit.rs"
[[test]]
name = "type_support"
path = "tests/type_support.rs"
[dependencies.dbkit-core]
version = "0.1.1"
[dependencies.dbkit-derive]
version = "0.1.1"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sqlx]
version = "0.7"
features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"json",
"macros",
"bigdecimal",
]
default-features = false
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["sync"]
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.trybuild]
version = "1"
[dev-dependencies.uuid]
version = "1"