[go: up one dir, main page]

re_data_store 0.10.1

In-memory storage of Rerun log data, indexed for fast queries.
Documentation
[package]
name = "re_data_store"
authors.workspace = true
description = "In-memory storage of Rerun log data, indexed for 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_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_core.workspace = true

document-features.workspace = true
itertools.workspace = true
nohash-hasher.workspace = true
serde = { workspace = true, features = ["derive", "rc"], optional = true }
thiserror.workspace = true

[dev-dependencies]
re_types = { workspace = true, features = ["datagen"] }
re_log_encoding = { workspace = true, features = ["decoder", "encoder"] }
criterion.workspace = true
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"]