[go: up one dir, main page]

re_data_store 0.8.0

In-memory storage of Rerun log data, indexed for fast fast queries.
Documentation
[package]
name = "re_data_store"
authors.workspace = true
description = "In-memory storage of Rerun log data, indexed for fast fast queries."
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
publish = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[package.metadata.docs.rs]
all-features = true


[features]
default = []

## Enable (de)serialization using serde.
serde = ["dep:serde", "re_log_types/serde"]


[dependencies]
re_arrow_store.workspace = true
re_components.workspace = true
re_format.workspace = true
re_int_histogram.workspace = true
re_log_encoding = { workspace = true, optional = true }
re_log_types.workspace = true
re_log.workspace = true
re_smart_channel.workspace = true
re_tracing.workspace = true
re_types.workspace = true

ahash.workspace = true
arrow2.workspace = true
document-features = "0.2"
itertools = { workspace = true }
nohash-hasher = "0.2"
serde = { version = "1", features = ["derive", "rc"], optional = true }
thiserror = "1.0"

[dev-dependencies]
re_components = { workspace = true, features = ["arrow_datagen"] }
re_log_encoding = { workspace = true, features = ["decoder", "encoder"] }
criterion = "0.5"
mimalloc.workspace = true
rand.workspace = true

[lib]
bench = false

[[example]]
name = "memory_usage"
path = "examples/memory_usage.rs"
required-features = ["re_log_encoding/decoder", "re_log_encoding/encoder"]