[package]
edition = "2021"
name = "dbkit-core"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and SQL building blocks for the dbkit ORM."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/alexeichhorn/rust-dbkit"
[features]
default = ["sqlx"]
sqlx = ["dep:sqlx"]
[lib]
name = "dbkit_core"
path = "src/lib.rs"
[[test]]
name = "column_compare_api"
path = "tests/column_compare_api.rs"
[[test]]
name = "interval_support"
path = "tests/interval_support.rs"
[[test]]
name = "join_sql"
path = "tests/join_sql.rs"
[[test]]
name = "locking_sql"
path = "tests/locking_sql.rs"
[[test]]
name = "mutation_sql"
path = "tests/mutation_sql.rs"
[[test]]
name = "sql_compiler"
path = "tests/sql_compiler.rs"
[[test]]
name = "type_support"
path = "tests/type_support.rs"
[[test]]
name = "vector_support"
path = "tests/vector_support.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sqlx]
version = "0.8"
features = ["postgres"]
optional = true
default-features = false
[dependencies.uuid]
version = "1"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.uuid]
version = "1"