[dependencies.chrono]
features = ["clock", "serde"]
version = "0.4"
[dependencies.derive_more]
features = ["from", "display", "error"]
version = "2.0"
[dependencies.hashbrown]
version = "0.16"
[dependencies.itertools]
version = "0.14"
[dependencies.minicbor-serde]
features = ["full"]
optional = true
version = "0.6"
[dependencies.parking_lot]
features = ["hardware-lock-elision"]
version = "0.12"
[dependencies.serde_core]
version = "1.0.228"
[dependencies.serde_json]
optional = true
version = "1.0.145"
[dependencies.tracing]
features = ["log"]
version = "0.1"
[dev-dependencies.insta]
features = ["filters", "ron"]
version = "1"
[dev-dependencies.serde]
features = ["derive"]
version = "1.0.228"
[dev-dependencies.tempfile]
features = ["nightly"]
version = "3"
[dev-dependencies.tracing-subscriber]
features = ["env-filter", "fmt"]
version = "0.3"
[features]
cbor = ["dep:minicbor-serde"]
default = ["memory"]
full = ["cbor", "json", "memory"]
json = ["dep:serde_json"]
memory = ["cbor"]
nightly = ["hashbrown/nightly", "parking_lot/nightly"]
[lib]
name = "lupabase"
path = "src/lib.rs"
[lints.clippy]
needless_return = "allow"
[package]
authors = ["sonicjhon1"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database-implementations"]
description = "Blazingly fast (work-in-progress) database engine written entirely in Rust"
edition = "2024"
keywords = ["database", "embedded", "in-memory", "json", "storage-engine"]
license = "MIT OR Apache-2.0"
name = "lupabase"
readme = "README.md"
repository = "https://github.com/sonicjhon1/lupabase"
version = "2.0.0-dev.1"
[target."cfg(any())".dependencies.serde]
default-features = false
optional = true
version = "1.0.228"
[[test]]
name = "basics"
path = "tests/basics.rs"
[[test]]
name = "tests_records"
path = "tests/tests_records.rs"
[[test]]
name = "tests_utils"
path = "tests/tests_utils.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"