File tree Expand file tree Collapse file tree 4 files changed +552
-939
lines changed
src/stac_fastapi/geoparquet Expand file tree Collapse file tree 4 files changed +552
-939
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies = [
1212 " stac-fastapi-api>=5.0.2" ,
1313 " stac-fastapi-extensions>=5.0.2" ,
1414 " stac-fastapi-types>=5.0.2" ,
15- " stacrs ==0.6.0-beta .0" ,
15+ " rustac ==0.6.0" ,
1616]
1717classifiers = [
1818 " Programming Language :: Python :: 3" ,
@@ -76,6 +76,7 @@ asyncio_default_fixture_loop_scope = "function"
7676filterwarnings = [
7777 " error" ,
7878 ' ignore:datetime.datetime.utcfromtimestamp\(\) is deprecated and scheduled for removal in a future version.:DeprecationWarning' ,
79+ " ignore:Using extra keyword arguments on `Field` is deprecated and will be removed.:pydantic.warnings.PydanticDeprecatedSince20" ,
7980]
8081
8182[tool .ruff .lint ]
Original file line number Diff line number Diff line change 44
55import tomllib
66from fastapi import FastAPI
7- from stacrs import DuckdbClient
7+ from rustac import DuckdbClient
88
99import stac_fastapi .api .models
1010from stac_fastapi .api .app import StacApi
Original file line number Diff line number Diff line change 55
66from fastapi import HTTPException
77from pydantic import ValidationError
8- from stacrs import DuckdbClient
8+ from rustac import DuckdbClient
99from starlette .requests import Request
1010
1111from stac_fastapi .api .models import BaseSearchPostRequest
You can’t perform that action at this time.
0 commit comments