[go: up one dir, main page]

re_types_core 0.24.1-rc.3

The core traits and types that power Rerun's data model.
Documentation
[package]
name = "re_types_core"
authors.workspace = true
description = "The core traits and types that power Rerun's data model."
edition = "2021"                                                         # TODO(#9943): Update to 2024
homepage.workspace = true
include.workspace = true
license.workspace = true
publish = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[lints]
workspace = true


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

[package.metadata.cargo-shear]
ignored = [
  "serde", # Needed to make `ComponentType` (an interned string) serializable.
]


[features]
default = []

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


[dependencies]
# Rerun
re_arrow_util.workspace = true
re_byte_size.workspace = true
re_case.workspace = true
re_error.workspace = true
re_log.workspace = true
re_string_interner.workspace = true
re_tracing.workspace = true
re_tuid = { workspace = true, features = ["bytemuck"] }

# External
anyhow.workspace = true
arrow.workspace = true
bytemuck = { workspace = true, features = ["derive"] }
document-features.workspace = true
half.workspace = true
itertools.workspace = true
nohash-hasher.workspace = true
once_cell.workspace = true
thiserror.workspace = true


# Optional dependencies
serde = { workspace = true, optional = true }


[dev-dependencies]
criterion.workspace = true
similar-asserts.workspace = true

[lib]
bench = false

[[bench]]
name = "bench_tuid"
harness = false