-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.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
[package]
name = "icechunk-python"
version = "0.2.15"
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
readme = "../README.md"
repository = "https://github.com/earth-mover/icechunk"
homepage = "https://icechunk.io"
license = "Apache-2.0"
keywords = ["zarr", "xarray", "database"]
categories = ["database", "science", "science::geo"]
authors = ["Earthmover PBC"]
edition = "2024"
publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "_icechunk_python"
crate-type = ["cdylib"]
[dependencies]
bytes = "1.10.1"
chrono = { version = "0.4.41" }
futures = "0.3.31"
icechunk = { path = "../icechunk", version = "0.2.14", features = ["logs"] }
itertools = "0.14.0"
pyo3 = { version = "0.24.2", features = [
"chrono",
# do we really need this one?
# "extension-module",
"experimental-async",
"multiple-pymethods",
] }
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
async-stream = "0.3.6"
thiserror = "2.0.12"
tokio = "1.44"
serde_json = "1.0.140"
async-trait = "0.1.88"
typetag = "0.2.20"
serde = { version = "1.0.219", features = ["derive", "rc"] }
miette = { version = "7.6.0", features = ["fancy"] }
clap = { version = "4.5", features = ["derive"], optional = true }
rand = "0.9.0"
rmp-serde = "1.3.0"
[features]
cli = ["clap", "icechunk/cli"]
default = ["cli"]
[lints]
workspace = true
[profile.perf]
inherits = "release"
debug = 1