Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions parquet-geospatial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ edition = { workspace = true }
rust-version = { workspace = true }

[dependencies]
arrow = { workspace = true }
arrow-schema = { workspace = true }
geo-traits = { version = "0.3" }
serde = { version = "1.0", default-features = false, features = ["derive"]}
serde_json = { version = "1.0", default-features = false, features = ["std"]}
wkb = { version = "0.9.1" }

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions parquet-geospatial/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@
pub mod bounding;
pub mod interval;
pub mod testing;

mod types;

pub use types::Hint as WkbTypeHint;
pub use types::Metadata as WkbMetadata;
pub use types::WkbType;
Loading
Loading