-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 965 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 965 Bytes
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
[package]
name = "zarr-datafusion-search-python"
version = "0.1.2"
edition = "2024"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
description = "Python bindings for zarr-datafusion-search"
readme = "README.md"
# repository = "https://github.com/datafusion-contrib/datafusion-geo"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow", "geospatial"]
categories = ["wasm", "science::geo"]
rust-version = "1.85"
[lib]
name = "_rust"
crate-type = ["cdylib"]
[features]
[dependencies]
datafusion = "53.0"
datafusion-ffi = "53.0"
icechunk = "0.3.16"
pyo3 = { version = "0.26", features = ["abi3-py39"] }
pyo3-async-runtimes = { version = "0.26", features = ["tokio-runtime"] }
pyo3-object_store = "0.6"
pythonize = "0.26"
stac = { version = "0.17.0", features = ["geoarrow"] }
zarr-datafusion-search = { path = "../" }
zarrs_icechunk = "0.4.2"
zarrs_metadata = "0.7.4"
zarrs_object_store = "0.5.0"
zarrs_storage = { version = "0.4.3", features = ["async"] }