stac

Crates.iostac
lib.rsstac
version0.13.1
created_at2022-02-15 02:58:17.047122+00
updated_at2025-09-23 22:31:10.578423+00
descriptionRust library for the SpatioTemporal Asset Catalog (STAC) specification
homepagehttps://stac-utils.github.io/rustac
repositoryhttps://github.com/stac-utils/rustac
max_upload_size
id532500
size1,871,594
Pete Gadomski (gadomski)

documentation

README

stac

GitHub Workflow Status docs.rs Crates.io Crates.io Contributor Covenant

Rust implementation of the SpatioTemporal Asset Catalog (STAC) specification.

Usage

To use the library in your project:

[dependencies]
stac = "0.13"

Examples

use stac::Item;

// Creates an item from scratch.
let item = Item::new("an-id");

// Reads an item from the filesystem.
let item: Item = stac::read("examples/simple-item.json").unwrap();

Please see the documentation for more usage examples.

Other info

This crate is part of the rustac monorepo, see its README for contributing and license information.

Commit count: 994

cargo fmt