-
Notifications
You must be signed in to change notification settings - Fork 413
/
Copy pathCargo.toml
63 lines (52 loc) · 1.53 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "re_chunk_store"
authors.workspace = true
description = "A storage engine for Rerun's Chunks"
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
publish = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true
[features]
default = []
## Enables `parking_lot`'s deadlock detection background thread.
deadlock_detection = ["parking_lot/deadlock_detection"]
[dependencies]
# Rerun dependencies:
re_chunk.workspace = true
re_format.workspace = true
re_log = { workspace = true, features = ["setup"] }
re_log_encoding = { workspace = true, features = ["decoder"] }
re_log_types.workspace = true
re_tracing.workspace = true
re_types_core.workspace = true
# External dependencies:
ahash.workspace = true
anyhow.workspace = true
arrow2 = { workspace = true, features = ["compute_concatenate"] }
document-features.workspace = true
indent.workspace = true
itertools.workspace = true
nohash-hasher.workspace = true
once_cell.workspace = true
parking_lot = { workspace = true, features = ["arc_lock"] }
thiserror.workspace = true
web-time.workspace = true
[dev-dependencies]
re_format.workspace = true
re_types = { workspace = true, features = ["testing"] }
anyhow.workspace = true
criterion.workspace = true
insta.workspace = true
mimalloc.workspace = true
rand = { workspace = true, features = ["std", "std_rng"] }
similar-asserts.workspace = true
tinyvec.workspace = true