-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.78 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.78 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
[package]
name = "rustac-py"
version = "0.9.8"
edition = "2024"
publish = false
[lib]
name = "rustac"
crate-type = ["cdylib"]
[features]
duckdb-bundled = ["stac-duckdb/bundled"]
openssl-vendored = ["dep:openssl"]
[dependencies]
clap = "4.5.59"
duckdb = { git = "https://github.com/gadomski/duckdb-rs", branch = "arrow-v58", features = ["serde_json"] }
futures-core = "0.3.32"
futures-util = "0.3.32"
geoarrow-schema = "0.7.0"
geojson = "0.24.1"
object_store = { version = "0.13.1", features = ["gcp", "aws", "azure", "http"] }
openssl = { version = "0.10", features = ["vendored"], optional = true }
parquet = "58.0.0"
pyo3 = { version = "0.28.0", features = ["extension-module"] }
pyo3-arrow = "0.17.0"
pyo3-async-runtimes = { version = "0.28.0", features = [
"tokio",
"tokio-runtime",
] }
pyo3-log = "0.13.0"
pyo3-object_store = { git = "https://github.com/developmentseed/obstore", rev = "9a7017a335ba59b062626b478c001c410093a5c7" }
pythonize = "0.28.0"
rustac = { git = "https://github.com/stac-utils/rustac", features = ["pgstac"] }
serde = "1.0.217"
serde_json = { version = "1.0.149", features = ["preserve_order"] }
stac = { git = "https://github.com/stac-utils/rustac", features = ["geoarrow", "geoparquet"] }
stac-duckdb = { git = "https://github.com/stac-utils/rustac" }
stac-io = { git = "https://github.com/stac-utils/rustac", features = ["store-all", "geoparquet"] }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["rt-multi-thread"] }
tracing = "0.1.44"
[build-dependencies]
cargo-lock = "11"
[patch.crates-io]
geoparquet = { git = "https://github.com/geoarrow/geoarrow-rs", branch = "arrow-58" }
geoarrow-array = { git = "https://github.com/geoarrow/geoarrow-rs", branch = "arrow-58" }
geoarrow-schema = { git = "https://github.com/geoarrow/geoarrow-rs", branch = "arrow-58" }