-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
51 lines (47 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
[package]
name = "rustac-py"
version = "0.9.11"
edition = "2024"
description = "pyo3 bindings for the rustac family of crates"
license = "MIT OR Apache-2.0"
categories = ["science", "data-structures"]
homepage = "https://stac-utils.github.io/rustac-py"
repository = "https://github.com/stac-utils/rustac-py"
[lib]
name = "rustac"
crate-type = ["rlib", "cdylib"]
[features]
extension-module = ["pyo3/extension-module"]
duckdb-bundled = ["stac-duckdb/bundled"]
openssl-vendored = ["dep:openssl"]
[dependencies]
async-stream = "0.3.6"
clap = "4.6.0"
duckdb = "1.10501.0"
futures-core = "0.3.32"
futures-util = "0.3.32"
geoarrow-schema = "0.7.0"
geojson = "1.0.0"
object_store = { version = "0.13.2", features = ["gcp", "aws", "azure", "http"] }
openssl = { version = "0.10", features = ["vendored"], optional = true }
parquet = "58.2.0"
pyo3 = "0.28.3"
pyo3-arrow = "0.17.0"
pyo3-async-runtimes = { version = "0.28.0", features = [
"tokio",
"tokio-runtime",
] }
pyo3-log = "0.13.0"
pyo3-object_store = "0.9.0"
pythonize = "0.28.0"
rustac = { version = "0.2.9", features = ["pgstac"] }
serde = "1.0.217"
serde_json = { version = "1.0.149", features = ["preserve_order"] }
stac = { version = "0.17.0", features = ["geoarrow", "geoparquet"] }
stac-duckdb = "0.3.7"
stac-io = { version = "0.2.8", features = ["store-all", "geoparquet"] }
thiserror = "2.0.18"
tokio = { version = "1.52.2", features = ["rt-multi-thread"] }
tracing = "0.1.44"
[build-dependencies]
cargo-lock = "11"