-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (59 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
66 lines (59 loc) · 1.92 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
[package]
name = "arrow-zarr"
version = "0.1.0"
homepage = "https://github.com/datafusion-contrib/arrow-zarr"
repository = "https://github.com/datafusion-contrib/arrow-zarr"
authors = ["Maxime Dion <maxdion@gmail.com>"]
license = "Apache-2.0"
keywords = ["arrow"]
edition = "2021"
rust-version = "1.86"
[features]
default = []
icechunk = ["dep:icechunk", "dep:zarrs_icechunk"]
datafusion = ["dep:datafusion"]
[dependencies]
arrow = { version = "55.2.0" }
arrow-array = { version = "55.2.0" }
arrow-schema = { version = "55.2.0" }
async-stream = "0.3"
async-trait = { version = "0.1.89" }
bytes = { version = "1.10.1" }
chrono = { version = "0.4.42" }
datafusion = { version = "49.0.0", optional = true }
futures = { version = "0.3.31" }
futures-util = { version = "0.3.31" }
icechunk = { version = "0.3.17", optional = true }
itertools = { version = "0.14.0" }
ndarray = { version = "^0.16.1" }
object_store = { version = "0.12.0", features = ["aws", "gcp"] }
tokio = { version = "1.46.1", features = ["rt", "macros", "net", "rt-multi-thread"] }
tokio-test = { version = "0.4.4" }
zarrs = { version = "0.22.1", features = ["async"] }
zarrs_filesystem = { version = "0.3.0" }
zarrs_icechunk = { version = "0.4.0", optional = true }
zarrs_metadata = { version = "0.6.0" }
zarrs_object_store = { version = "0.5.0" }
zarrs_storage = { version = "0.4.0", features = ["async"] }
[dev-dependencies]
aws-config = { version = "1.5.18" }
aws-sdk-s3 = { version = "1.78.0" }
criterion = { version = "0.7.0", features = ["async_tokio"] }
google-cloud-storage = "1.6.0"
walkdir = { version = "2.5.0" }
[[bench]]
name = "shared"
path = "benches/shared.rs"
# shared benchmark code, not meant to be ran alone
test = false
bench = false
[[bench]]
name = "s3_bench"
path = "benches/s3_bench.rs"
harness = false
required-features = ["icechunk", "datafusion"]
[[bench]]
name = "gcs_bench"
path = "benches/gcs_bench.rs"
harness = false
required-features = ["icechunk", "datafusion"]