Skip to content

Commit 97422da

Browse files
authored
release: stac-cli v0.5.2 (#637)
1 parent 843eb41 commit 97422da

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

crates/cli/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9-
## [0.5.1] - 2025-01-31
9+
## [0.5.2] - 2025-02-20
10+
11+
## Removed
12+
13+
- A lot of unused dependencies
14+
15+
## [0.5.1] - 2025-02-19
1016

1117
### Changed
1218

crates/cli/Cargo.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stac-cli"
33
description = "Command line interface for stac-rs"
4-
version = "0.5.1"
4+
version = "0.5.2"
55
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
66
authors.workspace = true
77
edition.workspace = true
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313

1414
[features]
1515
default = ["duckdb-bundled", "pgstac"]
16-
pgstac = ["stac-server/pgstac", "dep:tokio-postgres"]
16+
pgstac = ["stac-server/pgstac"]
1717
duckdb-bundled = ["duckdb/bundled"]
1818

1919
[dependencies]
@@ -22,9 +22,6 @@ axum.workspace = true
2222
clap = { workspace = true, features = ["derive"] }
2323
duckdb = { workspace = true }
2424
libduckdb-sys = { workspace = true }
25-
object_store.workspace = true
26-
reqwest.workspace = true
27-
serde.workspace = true
2825
serde_json.workspace = true
2926
stac = { workspace = true, features = [
3027
"geoparquet-compression",
@@ -35,18 +32,13 @@ stac = { workspace = true, features = [
3532
stac-api = { workspace = true, features = ["client"] }
3633
stac-duckdb.workspace = true
3734
stac-server = { workspace = true, features = ["axum"] }
38-
thiserror.workspace = true
3935
tokio = { workspace = true, features = [
4036
"macros",
4137
"io-std",
4238
"rt-multi-thread",
4339
"fs",
4440
] }
45-
tokio-postgres = { workspace = true, optional = true }
46-
tokio-stream.workspace = true
4741
tracing.workspace = true
48-
tracing-subscriber.workspace = true
49-
url.workspace = true
5042

5143
[dev-dependencies]
5244
assert_cmd.workspace = true

crates/cli/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// The verbosity stuff is cribbed from https://github.com/clap-rs/clap-verbosity-flag/blob/c621a6a8a7c0b6df8f1464a985a5d076b4915693/src/lib.rs and updated for tracing
22

3+
#![deny(unused_crate_dependencies)]
4+
35
use anyhow::{anyhow, Error, Result};
46
use clap::{Parser, Subcommand};
57
use duckdb as _;

0 commit comments

Comments
 (0)