| Crates.io | stac |
| lib.rs | stac |
| version | 0.16.1 |
| created_at | 2022-02-15 02:58:17.047122+00 |
| updated_at | 2026-01-21 01:02:46.324302+00 |
| description | Rust library for the SpatioTemporal Asset Catalog (STAC) specification |
| homepage | https://stac-utils.github.io/rustac |
| repository | https://github.com/stac-utils/rustac |
| max_upload_size | |
| id | 532500 |
| size | 1,998,496 |
Rust implementation of the SpatioTemporal Asset Catalog (STAC) specification.
To use the library in your project:
[dependencies]
stac = "*"
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.
This crate is part of the rustac monorepo, see its README for contributing and license information.