-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (50 loc) · 1.61 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
[package]
name = "arrow-zarr"
version = "0.0.1"
homepage = "https://github.com/datafusion-contrib/arrow-zarr"
repository = "https://github.com/datafusion-contrib/arrow-zarr"
authors = ["Maxime Dion <[email protected]>"]
license = "Apache-2.0"
keywords = ["arrow"]
edition = "2021"
rust-version = "1.64"
[dependencies]
async-trait = { version = "0.1.53" }
itertools = { version = "0.12.0" }
regex = { version = "1.9.5" }
serde_json = { version = "1.0.107" }
serde = { version = "1.0.188", features = ["derive"] }
flate2 = { version = "1.0.27" }
blosc = { version = "0.2.0" }
crc32c = { version = "0.6.5" }
object_store = { version = "0.9" }
futures = { version = "0.3" }
futures-util = { version = "0.3.30" }
tokio = { version = "1.0", features = ["full"] }
dyn-clone = { version = "1.0.16" }
arrow = { version = "50.0.0" }
arrow-array = { version = "50.0.0" }
arrow-buffer = { version = "50.0.0" }
arrow-cast = { version = "50.0.0" }
arrow-schema = { version = "50.0.0" }
arrow-data = { version = "50.0.0" }
datafusion = { version = "36.0", optional = true }
datafusion-expr = { version = "36.0", optional = true }
datafusion-common = { version = "36.0", optional = true }
datafusion-physical-expr = { version = "36.0", optional = true }
io-uring = { version = "0.6.4" }
libc = { version = "0.2.153" }
rayon = { version = "1.10.0" }
[features]
datafusion = [
"dep:datafusion",
"dep:datafusion-physical-expr",
"dep:datafusion-expr",
"dep:datafusion-common",
]
all = ["datafusion"]
[dev-dependencies]
arrow-cast = { version = "50.0.0", features = ["prettyprint"] }
chrono = { version = "0.4" }
[[bin]]
name = "async-benchmark"