Skip to content

Commit

Permalink
fix(duckdb): really lock to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Oct 17, 2024
1 parent 7590595 commit 416c648
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bb8-postgres = "0.8.1"
bytes = "1.7"
chrono = "0.4.38"
clap = "4.5"
duckdb = "=1.0"
duckdb = "=1.0.0"
fluent-uri = "0.3.1"
futures = "0.3.31"
gdal = "0.17.1"
Expand All @@ -29,6 +29,7 @@ geoarrow = "0.3.0"
geojson = "0.24.1"
http = "1.1"
jsonschema = { version = "0.22.3", default-features = false }
libduckdb-sys = "=1.0.0"
log = "0.4.22"
mime = "0.3.17"
mockito = "1.5"
Expand Down
1 change: 1 addition & 0 deletions duckdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ categories = ["science", "data-structures"]
[dependencies]
arrow = { workspace = true }
duckdb = { workspace = true }
libduckdb-sys = { workspace = true }
geoarrow = { workspace = true }
parquet = { workspace = true }
stac = { workspace = true, features = ["geoarrow"] }
Expand Down
1 change: 1 addition & 0 deletions duckdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use arrow::array::RecordBatch;
use duckdb::{types::Value, Connection};
use geoarrow::table::Table;
use libduckdb_sys as _;
use stac_api::{Direction, Search};
use std::{
collections::{HashMap, HashSet},
Expand Down

0 comments on commit 416c648

Please sign in to comment.