Skip to content

Commit

Permalink
all dependency stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 3, 2024
1 parent 3ef638e commit 3577366
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 13 deletions.
45 changes: 33 additions & 12 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ num-traits = "0.2"
once_cell = "1.17"
ordered-float = "4.2"
parking_lot = "0.12"
paste = "1.0"
pathdiff = "0.2"
pico-args = "0.5"
ply-rs = { version = "0.1", default-features = false }
Expand All @@ -191,6 +192,7 @@ rfd = { version = "0.12", default_features = false, features = ["xdg-portal"] }
rmp-serde = "1"
ron = "0.8.0"
rust-format = "0.3"
seq-macro = "0.3"
serde = "1"
serde_bytes = "0.11"
serde_json = { version = "1", default-features = false, features = ["std"] }
Expand Down
20 changes: 20 additions & 0 deletions crates/re_query_cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,37 @@ default = []

[dependencies]
# Rerun dependencies:
re_arrow_store.workspace = true
re_data_store.workspace = true
re_format.workspace = true
re_log.workspace = true
re_log_types.workspace = true
re_query.workspace = true
re_tracing.workspace = true
re_types_core.workspace = true

# External dependencies:
ahash.workspace = true
arrow2.workspace = true
backtrace.workspace = true
document-features.workspace = true
itertools.workspace = true
nohash-hasher.workspace = true
once_cell.workspace = true
parking_lot.workspace = true
paste.workspace = true
seq-macro.workspace = true
thiserror.workspace = true
web-time.workspace = true


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

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


Expand All @@ -47,3 +62,8 @@ bench = false
[[bench]]
name = "flat_vec_deque"
harness = false


[[bench]]
name = "latest_at"
harness = false
2 changes: 1 addition & 1 deletion crates/re_query_cache/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Caches {
latest_at.write().clear();
}

/// Gives write access to the appropriate [`LatestAtCache`] according to the specified
/// Gives write access to the appropriate `LatestAtCache` according to the specified
/// query parameters.
#[inline]
pub fn with_latest_at<A, F, R>(
Expand Down

0 comments on commit 3577366

Please sign in to comment.