[package]
edition = "2024"
name = "tempest-engine"
version = "0.0.2"
authors = ["The TempestDB Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Relational database engine for TempestDB"
homepage = "https://tempest.jofh.me"
readme = false
license-file = "LICENSE"
repository = "https://codeberg.org/Vimthusiast/tempest"
[lib]
name = "tempest_engine"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.11.1"
features = ["serde"]
[dependencies.derive_more]
version = "2.1.1"
features = ["full"]
[dependencies.itertools]
version = "0.14.0"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.strum]
version = "0.27.2"
features = ["derive"]
[dependencies.tempest-core]
version = "0.0.2"
[dependencies.tempest-io]
version = "0.0.1"
[dependencies.tempest-kv]
version = "0.0.2"
[dependencies.tempest-rt]
version = "0.0.1"
[dependencies.tempest-tql]
version = "0.0.2"
[dependencies.tracing]
version = "0.1.44"
features = ["release_max_level_warn"]
[dev-dependencies.tempest-core]
version = "0.0.2"
features = ["testing"]
[dev-dependencies.tempest-io]
version = "0.0.1"
features = ["virtual"]
[dev-dependencies.tempest-tql]
version = "0.0.2"
features = ["testing"]