-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (24 loc) · 997 Bytes
/
Cargo.toml
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 = "polars-st"
version = "0.1.0-alpha.10"
edition = "2021"
license = "LGPL-2.1"
categories = ["science::geo"]
repository = "https://github.com/Oreilles/polars-st"
keywords = ["polars", "dataframe", "gis", "geospatial", "geometry"]
[lib]
name = "polars_st"
crate-type = ["cdylib"]
[dependencies]
geos = { git = "https://github.com/Oreilles/rust-geos", branch = "main", features = ["static", "v3_14_0"]}
num_enum = "0.7.3"
polars = { version = "0.43.1", default-features = false, features = ["lazy", "dtype-array", "dtype-struct"] }
proj = { git = "https://github.com/Oreilles/proj", branch = "main", default-features = false }
pyo3 = { version = "0.22.0", features = ["abi3-py38"] }
pyo3-polars = { version = "0.17.0", features = ["derive", "dtype-array", "dtype-struct"] }
scroll = "0.12.0"
serde = { version = "1.0.210", features = ["derive"] }
[features]
default = ["bundled_proj", "bundled_sqlite"]
bundled_proj = ["proj/bundled_proj"]
bundled_sqlite = ["proj/bundled_sqlite"]