Skip to content

Commit

Permalink
re_query2 + clampedzip impls
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Mar 19, 2024
1 parent c2c5955 commit b647723
Show file tree
Hide file tree
Showing 10 changed files with 3,836 additions and 1 deletion.
29 changes: 29 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions crates/re_query2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
[package]
name = "re_query2"
authors.workspace = true
description = "Temporary crate meant to replace re_query"
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
# TODO(cmc): Replace re_query with this crate. Never publish this one.
publish = false
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"]

## Enable codegen helper binaries (generates ClampedZip & RangeZip implementations).
codegen = ["unindent"]


[dependencies]
# Rerun dependencies:
re_data_store.workspace = true
re_format = { workspace = true, features = ["arrow"] }
re_log_types.workspace = true
re_types_core.workspace = true
re_log.workspace = true
re_tracing.workspace = true
re_tuid.workspace = true

# External dependencies:
ahash.workspace = true
anyhow.workspace = true
arrow2.workspace = true
backtrace.workspace = true
document-features.workspace = true
itertools = { workspace = true }
nohash-hasher.workspace = true
serde = { workspace = true, features = ["derive", "rc"], optional = true }
smallvec.workspace = true
thiserror.workspace = true

# Optional:
unindent = { workspace = true, optional = true }


[dev-dependencies]
re_types = { workspace = true, features = ["datagen"] }

criterion.workspace = true
itertools = { workspace = true }
mimalloc.workspace = true
rand = { workspace = true, features = ["std", "std_rng"] }
similar-asserts.workspace = true


[lib]
bench = false


[[bin]]
name = "clamped_zip"
required-features = ["codegen"]
5 changes: 5 additions & 0 deletions crates/re_query2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# re_query2

Temporary crate for implementing the new data APIs. Not published.

Will replace `re_query` when ready.
Loading

0 comments on commit b647723

Please sign in to comment.