Skip to content

Commit 3577366

Browse files
committed
all dependency stuff
1 parent 3ef638e commit 3577366

4 files changed

Lines changed: 56 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 33 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ num-traits = "0.2"
169169
once_cell = "1.17"
170170
ordered-float = "4.2"
171171
parking_lot = "0.12"
172+
paste = "1.0"
172173
pathdiff = "0.2"
173174
pico-args = "0.5"
174175
ply-rs = { version = "0.1", default-features = false }
@@ -191,6 +192,7 @@ rfd = { version = "0.12", default_features = false, features = ["xdg-portal"] }
191192
rmp-serde = "1"
192193
ron = "0.8.0"
193194
rust-format = "0.3"
195+
seq-macro = "0.3"
194196
serde = "1"
195197
serde_bytes = "0.11"
196198
serde_json = { version = "1", default-features = false, features = ["std"] }

crates/re_query_cache/Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,37 @@ default = []
2121

2222
[dependencies]
2323
# Rerun dependencies:
24+
re_arrow_store.workspace = true
25+
re_data_store.workspace = true
26+
re_format.workspace = true
27+
re_log.workspace = true
2428
re_log_types.workspace = true
2529
re_query.workspace = true
30+
re_tracing.workspace = true
2631
re_types_core.workspace = true
2732

2833
# External dependencies:
2934
ahash.workspace = true
35+
arrow2.workspace = true
36+
backtrace.workspace = true
3037
document-features.workspace = true
3138
itertools.workspace = true
39+
nohash-hasher.workspace = true
40+
once_cell.workspace = true
41+
parking_lot.workspace = true
42+
paste.workspace = true
43+
seq-macro.workspace = true
3244
thiserror.workspace = true
45+
web-time.workspace = true
3346

3447

3548
[dev-dependencies]
3649
re_log_types = { workspace = true, features = ["testing"] }
50+
re_types = { workspace = true, features = ["datagen"] }
3751

3852
criterion.workspace = true
3953
mimalloc.workspace = true
54+
rand = { workspace = true, features = ["std", "std_rng"] }
4055
similar-asserts.workspace = true
4156

4257

@@ -47,3 +62,8 @@ bench = false
4762
[[bench]]
4863
name = "flat_vec_deque"
4964
harness = false
65+
66+
67+
[[bench]]
68+
name = "latest_at"
69+
harness = false

crates/re_query_cache/src/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl Caches {
5656
latest_at.write().clear();
5757
}
5858

59-
/// Gives write access to the appropriate [`LatestAtCache`] according to the specified
59+
/// Gives write access to the appropriate `LatestAtCache` according to the specified
6060
/// query parameters.
6161
#[inline]
6262
pub fn with_latest_at<A, F, R>(

0 commit comments

Comments
 (0)