-
Notifications
You must be signed in to change notification settings - Fork 402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New data APIs 2: cached latest-at queries #5581
Changes from all commits
c0029a1
9ef2684
176f16f
e0a0540
832743c
6a8fb4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[package] | ||
name = "re_query_cache2" | ||
authors.workspace = true | ||
description = "Temporary crate meant to replace re_query_cache" | ||
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 = [] | ||
|
||
[dependencies] | ||
# Rerun dependencies: | ||
re_data_store.workspace = true | ||
re_format.workspace = true | ||
re_log.workspace = true | ||
re_log_types.workspace = true | ||
re_query2.workspace = true | ||
re_tracing.workspace = true | ||
re_types_core.workspace = true | ||
|
||
# External dependencies: | ||
ahash.workspace = true | ||
anyhow.workspace = true | ||
backtrace.workspace = true | ||
indent.workspace = true | ||
itertools.workspace = true | ||
nohash-hasher.workspace = true | ||
parking_lot.workspace = true | ||
paste.workspace = true | ||
seq-macro.workspace = true | ||
web-time.workspace = true | ||
|
||
|
||
[dev-dependencies] | ||
re_types = { workspace = true, features = ["datagen"] } | ||
|
||
criterion.workspace = true | ||
mimalloc.workspace = true | ||
rand = { workspace = true, features = ["std", "std_rng"] } | ||
similar-asserts.workspace = true | ||
Comment on lines
+23
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Most of these aren't used yet and were just imported as-is from |
||
|
||
|
||
[lib] | ||
bench = false | ||
|
||
|
||
[[bench]] | ||
name = "flat_vec_deque" | ||
harness = false | ||
|
||
[[bench]] | ||
name = "latest_at" | ||
harness = false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# re_query_cache2 | ||
|
||
Temporary crate for implementing the new cached data APIs. Not published. | ||
|
||
Will replace `re_query_cache2` when ready. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❗