-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 2.45 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (62 loc) · 2.45 KB
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
64
65
66
67
[package]
name = "beacon-binary-format"
version = "2.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
object_store-12 = { package = "object_store", version = "0.12", features = ["aws"], optional = true }
object_store-13 = { package = "object_store", version = "0.13", features = ["aws"], optional = true }
rkyv = { version = "=0.8.10", features = [
"bytes-1",
"pointer_width_64",
"indexmap-2",
"smol_str-0_3"
] }
moka = { version = "0.12.10", features = ["future"] }
futures = "0.3.31"
async-trait = "0.1.88"
munge_macro = "=0.4.1"
itertools = "0.14.0"
arrow-56 = { package = "arrow", version = "56", features = ["prettyprint"], optional = true }
arrow-57 = { package = "arrow", version = "57", features = ["prettyprint"], optional = true }
arrow-58 = { package = "arrow", version = "58", features = ["prettyprint"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" # or `bincode = "1.3"` for binary
byteorder = "1.5.0"
# Utils
indexmap = {version = "2.7", features = ["serde"] }
bytes = "1.10.0"
tokio = { version = "1.47.0", features = ["full"] }
tempfile = "3.19.1"
crossbeam = "0.8.4"
# Error handling
anyhow = "1.0.95"
thiserror = "2.0.12"
# Compression libs
zstd = "0.13.2"
lz4_flex = "0.11.3"
lzzzz = "2.0.0"
parking_lot = "0.12.4"
tracing = "0.1.41"
flume = { version = "0.11.1", "features" = ["async"] }
nd-arrow-array = { git = "https://github.com/maris-development/nd-arrow-array.git", branch = "main", version = "2.0.0", default-features = false }
[features]
# Default to arrow-58 (workspace is on arrow 58 / datafusion 53). arrow-56 / arrow-57 remain
# selectable via `--no-default-features --features arrow-56` for standalone use.
#
# The object_store dependency is likewise selectable: pick exactly one of
# object-store-12 / object-store-13 (default). The selected version must match the
# object_store version used by the crate that passes `Arc<dyn ObjectStore>` / `Path` in.
default = ["arrow-58", "object-store-13"]
arrow-56 = ["dep:arrow-56", "nd-arrow-array/arrow-56"]
arrow-57 = ["dep:arrow-57", "nd-arrow-array/arrow-57"]
arrow-58 = ["dep:arrow-58", "nd-arrow-array/arrow-58"]
object-store-12 = ["dep:object_store-12"]
object-store-13 = ["dep:object_store-13"]
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports", "async_tokio"] }
rand = "0.9.0"
tempfile = "3.16.0"
[[bench]]
name = "benchmark"
harness = false