Skip to content

Commit afebad6

Browse files
committed
fix(duckdb): really lock to v1.0.0
1 parent 7590595 commit afebad6

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bb8-postgres = "0.8.1"
1818
bytes = "1.7"
1919
chrono = "0.4.38"
2020
clap = "4.5"
21-
duckdb = "=1.0"
21+
duckdb = "=1.0.0"
2222
fluent-uri = "0.3.1"
2323
futures = "0.3.31"
2424
gdal = "0.17.1"
@@ -29,6 +29,7 @@ geoarrow = "0.3.0"
2929
geojson = "0.24.1"
3030
http = "1.1"
3131
jsonschema = { version = "0.22.3", default-features = false }
32+
libduckdb-sys = "=1.0.0"
3233
log = "0.4.22"
3334
mime = "0.3.17"
3435
mockito = "1.5"

duckdb/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ categories = ["science", "data-structures"]
1313
[dependencies]
1414
arrow = { workspace = true }
1515
duckdb = { workspace = true }
16+
libduckdb-sys = { workspace = true }
1617
geoarrow = { workspace = true }
1718
parquet = { workspace = true }
1819
stac = { workspace = true, features = ["geoarrow"] }

duckdb/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use arrow::array::RecordBatch;
66
use duckdb::{types::Value, Connection};
77
use geoarrow::table::Table;
8+
use libduckdb_sys as _;
89
use stac_api::{Direction, Search};
910
use std::{
1011
collections::{HashMap, HashSet},

0 commit comments

Comments
 (0)