Skip to content

Commit 67228d0

Browse files
committed
refactor(cli): remove geoparquet feature
We just turn it on Closes #402
1 parent 1693405 commit 67228d0

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed

.github/workflows/cli.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,12 @@ jobs:
3838
uses: Swatinem/rust-cache@v2
3939
- name: Check w/ no default features
4040
run: cargo check --no-default-features
41-
- name: Check w/ geoparquet
42-
run: cargo check --no-default-features -F geoparquet
4341
- name: Check w/ pgstac
4442
run: cargo check --no-default-features -F pgstac
4543
- name: Check w/ python
4644
run: cargo check --no-default-features -F python
4745
- name: Test
48-
run: cargo test --no-default-features -F geoparquet -F pgstac -F python
46+
run: cargo test --no-default-features -F pgstac -F python
4947
test-cli-with-gdal:
5048
runs-on: ubuntu-latest
5149
strategy:

cli/CHANGELOG.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
### Added
1111

1212
- Outfile and stream arguments to `items` ([#363](https://github.com/stac-utils/stac-rs/pull/363))
13-
- `object_store` ([#371](https://github.com/stac-utils/stac-rs/pull/371))
14-
15-
### Fixed
16-
17-
- ndjson reads ([363](https://github.com/stac-utils/stac-rs/pull/363))
18-
19-
### Changed
20-
21-
- Update **geoarrow** to v0.3.0 ([#367](https://github.com/stac-utils/stac-rs/pull/367))
2213

2314
## [0.3.1] - 2024-09-06
2415

cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ categories = ["science", "data-structures"]
1212
rust-version = "1.75"
1313

1414
[features]
15-
default = ["gdal", "geoparquet", "pgstac"]
15+
default = ["gdal", "pgstac"]
1616
duckdb = ["dep:stac-duckdb", "dep:duckdb"]
1717
gdal = ["stac/gdal"]
18-
geoparquet = ["stac/geoparquet-compression"]
1918
pgstac = ["stac-server/pgstac", "dep:pgstac"]
20-
python = ["dep:pyo3", "pgstac", "geoparquet"]
19+
python = ["dep:pyo3", "pgstac"]
2120

2221
[dependencies]
2322
axum = "0.7"
@@ -30,8 +29,9 @@ reqwest = "0.12"
3029
serde = "1"
3130
serde_json = "1"
3231
stac = { version = "0.9.0", path = "../core", features = [
33-
"reqwest",
32+
"geoparquet-compression",
3433
"object-store-all",
34+
"reqwest",
3535
] }
3636
stac-api = { version = "0.5.0", path = "../api", features = ["client"] }
3737
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }

0 commit comments

Comments
 (0)