1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Rust SDK for the AEO Protocol v0.1.
//!
//! Parse, build, validate, and fetch AEO declaration documents.
//!
//! Specification: <https://github.com/mizcausevic-dev/aeo-protocol-spec>
//!
//! # Example
//!
//! ```no_run
//! use aeo_protocol::{Document, fetch_well_known};
//!
//! let doc = fetch_well_known("https://mizcausevic-dev.github.io")?;
//! println!("{}", doc.entity.name);
//! # Ok::<(), aeo_protocol::AeoError>(())
//! ```
pub use ;
pub use AeoError;
pub use ;
/// The AEO Protocol version supported by this SDK.
pub const PROTOCOL_VERSION: &str = "0.1";
/// The version of this SDK crate.
pub const SDK_VERSION: &str = env!;