@@ -7,8 +7,8 @@ use pyo3::prelude::*;
77use pyo3:: { Bound , FromPyObject , PyErr , PyResult , exceptions:: PyValueError , types:: PyDict } ;
88use pyo3_object_store:: AnyObjectStore ;
99use serde_json:: { Map , Value } ;
10+ use stac:: api:: { Fields , Filter , Items , Search , Sortby } ;
1011use stac:: { Bbox , geoparquet:: WriterOptions } ;
11- use stac_api:: { Fields , Filter , Items , Search , Sortby } ;
1212use stac_io:: { Format , StacStore , api:: Client } ;
1313use std:: sync:: Arc ;
1414use tokio:: { pin, sync:: Mutex } ;
@@ -226,7 +226,7 @@ fn search_duckdb(
226226 href : String ,
227227 search : Search ,
228228 max_items : Option < usize > ,
229- ) -> Result < stac_api :: ItemCollection > {
229+ ) -> Result < stac :: api :: ItemCollection > {
230230 let value = stac_duckdb:: search ( & href, search, max_items) ?;
231231 Ok ( value)
232232}
@@ -235,7 +235,7 @@ async fn search_api(
235235 href : String ,
236236 search : Search ,
237237 max_items : Option < usize > ,
238- ) -> Result < stac_api :: ItemCollection > {
238+ ) -> Result < stac :: api :: ItemCollection > {
239239 let stream = iter_search_api ( href, search) . await ?;
240240 pin ! ( stream) ;
241241 let mut items = if let Some ( max_items) = max_items {
0 commit comments