[package]
edition = "2024"
name = "vantage-live"
version = "0.4.8"
authors = ["Romans Malinovskis <me@nearly.guru>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Locally-cached, write-through table wrapper for the Vantage framework"
homepage = "https://romaninsh.github.io/vantage"
documentation = "https://docs.rs/vantage-live"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/romaninsh/vantage"
resolver = "2"
[lib]
name = "vantage_live"
path = "src/lib.rs"
[[example]]
name = "live_demo"
path = "examples/live_demo.rs"
[[test]]
name = "1_cache_trait"
path = "tests/1_cache_trait.rs"
[[test]]
name = "1_live_event"
path = "tests/1_live_event.rs"
[[test]]
name = "2_live_table_read"
path = "tests/2_live_table_read.rs"
[[test]]
name = "3_live_table_write"
path = "tests/3_live_table_write.rs"
[[test]]
name = "4_live_stream"
path = "tests/4_live_stream.rs"
[[test]]
name = "5_anytable_wrap"
path = "tests/5_anytable_wrap.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.ciborium]
version = "0.2"
features = ["std"]
[dependencies.futures-util]
version = "0.3"
[dependencies.indexmap]
version = "2"
[dependencies.redb]
version = "2.6"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"macros",
"time",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
[dependencies.vantage-core]
version = "0.4"
[dependencies.vantage-dataset]
version = "0.4.2"
[dependencies.vantage-expressions]
version = "0.4"
[dependencies.vantage-table]
version = "0.4.8"
[dependencies.vantage-types]
version = "0.4.2"
[dev-dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.vantage-api-client]
version = "0.1.4"
[dev-dependencies.vantage-redb]
version = "0.4"