-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 893 Bytes
/
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
[package]
name = "zarrs_icechunk"
version = "0.1.0-alpha.2"
authors = ["Lachlan Deakin <[email protected]>"]
edition = "2021"
rust-version = "1.81"
description = "icechunk store support for the zarrs crate"
homepage = "https://zarrs.dev"
documentation = "https://docs.rs/zarrs_icechunk"
repository = "https://github.com/LDeakin/zarrs_icechunk"
license = "MIT OR Apache-2.0"
keywords = ["zarr", "zarrs", "storage", "store", "icechunk"]
categories = ["encoding"]
[dependencies]
async-trait = "0.1.74"
futures = "0.3.29"
icechunk = "0.1.0-alpha.8"
tokio = "1.34.0"
zarrs_storage = { version = "0.3.0", features = ["async"] }
[dev-dependencies]
tempfile = "3"
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }
tokio-test = "0.4.4"
zarrs = { version = "0.19.0", features = ["async", "sharding", "gzip"] }
zarrs_storage = { version = "0.3.0", features = ["async", "tests"] }