Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
220 changes: 217 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions arrow-pg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ readme = "../README.md"
rust-version.workspace = true

[features]
default = ["arrow"]
default = ["arrow", "postgis"]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will remove this before merging

arrow = ["dep:arrow"]
datafusion = ["dep:datafusion"]
geo = ["postgres-types/with-geo-types-0_7", "dep:geoarrow", "dep:geoarrow-schema", "dep:wkb"]
postgis = ["postgres-types/with-geo-types-0_7", "dep:geoarrow", "dep:geoarrow-schema", "dep:postgis", "dep:geo-postgis", "pgwire/pg-type-postgis", "dep:geo-traits"]

[dependencies]
arrow = { workspace = true, optional = true }
Expand All @@ -31,7 +31,9 @@ pg_interval = { version = "0.5.1", package = "pg_interval_2" }
pgwire = { workspace = true, default-features = false, features = ["server-api", "pg-ext-types"] }
postgres-types.workspace = true
rust_decimal.workspace = true
wkb = { version = "0.9", optional = true }
postgis = { version = "0.9", optional = true }
geo-postgis = { version = "0.2", optional = true }
geo-traits = { version = "0.3", optional = true }

[dev-dependencies]
async-trait = "0.1"
Expand Down
Loading
Loading