Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions crates/core/src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,15 @@ impl Format {
///
/// # Examples
///
/// ```no_run
/// ```
/// use stac::{Item, Format};
///
/// #[cfg(feature = "object-store-aws")]
/// {
/// # tokio_test::block_on(async {
/// let item: Item = stac::io::get_opts("s3://bucket/item.json", [("aws_access_key_id", "...")]).await.unwrap();
/// let item: Item = stac::io::get_opts("s3://nz-elevation/catalog.json",
/// [("skip_signature", "true"), ("region", "ap-southeast-2")],
/// ).await.unwrap();
/// # })
/// }
/// ```
Expand Down
Loading