stac_types/
lib.rs

1mod error;
2mod fields;
3mod href;
4pub mod link;
5mod migrate;
6pub mod mime;
7mod version;
8
9pub type Result<T> = std::result::Result<T, Error>;
10
11pub use {
12    error::Error,
13    fields::Fields,
14    href::{Href, RealizedHref, SelfHref},
15    link::{Link, Links},
16    migrate::Migrate,
17    version::Version,
18};
19
20/// The default STAC version of this library.
21pub const STAC_VERSION: Version = Version::v1_1_0;