rustac 0.2.8

Command line interface for rustac
Documentation
[package]
name = "rustac"
description = "Command line interface for rustac"
version = "0.2.8"
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
categories.workspace = true
rust-version.workspace = true

[features]
default = []
pgstac = ["dep:pgstac", "stac-server/pgstac"]
duckdb-bundled = ["stac-duckdb/bundled"]

[dependencies]
anyhow.workspace = true
async-stream.workspace = true
axum.workspace = true
clap = { workspace = true, features = ["derive"] }
clap_complete.workspace = true
futures-core.workspace = true
futures-util.workspace = true
pgstac = { version = "0.4.7", path = "../pgstac", optional = true }
serde_json.workspace = true
stac = { version = "0.16.4", path = "../core" }
stac-duckdb = { version = "0.3.6", path = "../duckdb" }
stac-io = { version = "0.2.6", path = "../io", features = [
    "store-all",
    "geoparquet",
] }
stac-server = { version = "0.5.0", path = "../server", features = ["axum", "duckdb"] }
stac-validate = { version = "0.6.6", path = "../validate" }
tokio = { workspace = true, features = [
    "macros",
    "io-std",
    "rt-multi-thread",
    "fs",
] }
tracing.workspace = true
tracing-indicatif.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
url.workspace = true

[dev-dependencies]
assert_cmd.workspace = true
rstest.workspace = true
tempfile.workspace = true

[lib]
crate-type = ["lib", "cdylib"]

[[bin]]
name = "rustac"
path = "src/main.rs"
doc = false
test = false

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]