-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
3,836 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.