geopackage-cli 0.7.1

Command-line tool for OGC GeoPackage (.gpkg) files: inspect, validate, index and copy
[package]
name = "geopackage-cli"
description = "Command-line tool for OGC GeoPackage (.gpkg) files: inspect, validate, index and copy"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

# The binary is `gpkg`; the crate is `geopackage-cli` so it sits beside
# `geopackage` and `geopackage-core` on crates.io under the same name stem.
[[bin]]
name = "gpkg"
path = "src/main.rs"

[lints]
workspace = true

[dependencies]
geopackage.workspace = true
clap.workspace = true
thiserror.workspace = true

[dev-dependencies]
tempfile.workspace = true
# Integration tests damage a copy of a fixture through raw SQL to produce the
# conditions `validate` reports; nothing in the binary uses rusqlite directly.
rusqlite.workspace = true