Asynchronous I/O for the SpatioTemporal Asset Catalog (STAC) specification.
toml
[dependencies]
stac = "0.4"
stac-async = "0.4"
rust
// Read an item.
let url = "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0/examples/simple-item.json";
let value = stac_async::read(url).await.unwrap();
let item: stac::Item = value.try_into().unwrap();
Please see the documentation for more usage examples.