[package]
edition = "2021"
name = "mongreldb-kit"
version = "0.18.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema-aware, storage-backed application persistence layer for MongrelDB with migrations, relational constraints, and a query builder."
readme = false
keywords = [
"mongreldb",
"database",
"orm",
"migrations",
"transactions",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/visorcraft/MongrelDB-Kit"
[features]
default = []
remote = ["dep:reqwest"]
[lib]
name = "mongreldb_kit"
path = "src/lib.rs"
[[test]]
name = "approx"
path = "tests/approx.rs"
[[test]]
name = "bulk_guard_batching"
path = "tests/bulk_guard_batching.rs"
[[test]]
name = "explain"
path = "tests/explain.rs"
[[test]]
name = "fixes"
path = "tests/fixes.rs"
[[test]]
name = "guards"
path = "tests/guards.rs"
[[test]]
name = "incremental"
path = "tests/incremental.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "join_pushdown"
path = "tests/join_pushdown.rs"
[[test]]
name = "set_similarity"
path = "tests/set_similarity.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "time_travel"
path = "tests/time_travel.rs"
[[test]]
name = "tsv"
path = "tests/tsv.rs"
[dependencies.arrow]
version = "58"
[dependencies.bincode]
version = "1"
[dependencies.mongreldb-core]
version = "0.29.0"
features = ["encryption"]
[dependencies.mongreldb-kit-core]
version = "0.18.0"
[dependencies.mongreldb-query]
version = "0.29.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["rt"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"