-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 765 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
[package]
name = "zarr-datafusion-search-python"
version = "0.1.0"
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-ffi = "50"
pyo3 = { version = "0.26", features = ["abi3-py39"] }
zarr-datafusion-search = { path = "../" }
zarrs_metadata = "0.6.1"
[patch.crates-io]
zarrs_metadata = { git = "https://github.com/zarrs/zarrs", rev = "6ea0464cf50e481cbae0e89de267c7991ed65f3f" }