[package]
edition = "2024"
name = "vantage-redb"
version = "0.5.3"
authors = ["Romans Malinovskis <me@nearly.guru>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded redb key-value persistence backend for Vantage framework"
homepage = "https://romaninsh.github.io/vantage"
documentation = "https://docs.rs/vantage-redb"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/romaninsh/vantage"
resolver = "2"
[lib]
name = "vantage_redb"
path = "src/lib.rs"
[[test]]
name = "1_serial"
path = "tests/1_serial.rs"
[[test]]
name = "1_types_record"
path = "tests/1_types_record.rs"
[[test]]
name = "2_condition"
path = "tests/2_condition.rs"
[[test]]
name = "4_conditions"
path = "tests/4_conditions.rs"
[[test]]
name = "4_editable_data_set"
path = "tests/4_editable_data_set.rs"
[[test]]
name = "4_indexes"
path = "tests/4_indexes.rs"
[[test]]
name = "4_readable_data_set"
path = "tests/4_readable_data_set.rs"
[[test]]
name = "4_table_def"
path = "tests/4_table_def.rs"
[[test]]
name = "5_references"
path = "tests/5_references.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.ciborium]
version = "0.2"
features = ["std"]
[dependencies.futures-util]
version = "0.3"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.paste]
version = "1"
[dependencies.redb]
version = "2.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.vantage-core]
version = "0.5"
[dependencies.vantage-dataset]
version = "0.5"
[dependencies.vantage-expressions]
version = "0.5"
[dependencies.vantage-table]
version = "0.5"
[dependencies.vantage-types]
version = "0.5"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]