Skip to content

Commit e21a940

Browse files
committed
chore: get duckdb ready for release
1 parent 9433934 commit e21a940

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ serde_json = "1"
3737
stac = { version = "0.8", path = "../core" }
3838
stac-api = { version = "0.4", path = "../api" }
3939
stac-async = { version = "0.5", path = "../async" }
40-
stac-duckdb = { version = "0.1", path = "../duckdb", optional = true }
40+
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
4141
stac-server = { version = "0.1", path = "../server", features = ["axum"] }
4242
stac-validate = { version = "0.2", path = "../validate" }
4343
thiserror = "1"

duckdb/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "stac-duckdb"
3-
version = "0.1.0"
3+
version = "0.0.1"
4+
authors = ["Pete Gadomski <[email protected]>"]
45
edition = "2021"
6+
description = "Experimental client for querying stac-geoparquet using DuckDB"
7+
homepage = "https://github.com/stac-utils/stac-rs"
8+
repository = "https://github.com/stac-utils/stac-rs"
9+
license = "MIT OR Apache-2.0"
10+
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
11+
categories = ["science", "data-structures"]
512

613
[dependencies]
714
arrow = "52"

duckdb/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# pgstac
2+
3+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/stac-utils/stac-rs/ci.yml?branch=main&style=for-the-badge)](https://github.com/stac-utils/stac-rs/actions/workflows/ci.yml)
4+
[![docs.rs](https://img.shields.io/docsrs/stac-duckdb?style=for-the-badge)](https://docs.rs/stac-duckdb/latest/stac_duckdb/)
5+
[![Crates.io](https://img.shields.io/crates/v/stac-duckdb?style=for-the-badge)](https://crates.io/crates/stac-duckdb)
6+
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT)
7+
8+
Experimental client using [DuckDB](https://duckdb.org/) to search [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet).
9+
10+
## Usage
11+
12+
In your `Cargo.toml`:
13+
14+
```toml
15+
[dependencies]
16+
stac-duckdb = "0.0.1"
17+
```
18+
19+
See the [documentation](https://docs.rs/stac-duckdb) for more.
20+
21+
## Other info
22+
23+
This crate is part of the [stac-rs](https://github.com/stac-utils/stac-rs) monorepo, see its README for contributing and license information.

0 commit comments

Comments
 (0)