sails-rs 1.0.1

Main abstractions for the Sails framework
Documentation
#![cfg_attr(not(doctest), doc = include_str!("../README.md"))]
#![no_std]

#[cfg(all(feature = "std", not(target_arch = "wasm32")))]
extern crate std;

#[cfg(feature = "client-builder")]
pub use builder::{ClientBuilder, ClientGenerator, IdlPath, build_client, build_client_as_lib};
#[cfg(feature = "wasm-builder")]
pub use gwasm_builder::build as build_wasm;
pub use hex;
#[doc(hidden)]
pub use paste;
pub use prelude::*;
#[cfg(feature = "idl-embed")]
pub use sails_idl_embed::{embed_idl, embed_idl_to_file, extract_idl, extract_idl_from_file};
#[cfg(all(feature = "idl-gen", not(target_arch = "wasm32")))]
pub use sails_idl_gen::generate_idl;
#[cfg(all(feature = "idl-gen", feature = "std", not(target_arch = "wasm32")))]
pub use sails_idl_gen::generate_idl_to_file;
pub use sails_idl_meta::{self as meta};
pub use spin;

#[cfg(feature = "client-builder")]
mod builder;
#[cfg(any(
    feature = "gstd",
    all(feature = "gtest", not(target_arch = "wasm32")),
    all(feature = "gclient", not(target_arch = "wasm32"))
))]
pub mod client;
pub mod errors;
#[cfg(all(feature = "gclient", not(target_arch = "wasm32")))]
pub use gclient;
#[cfg(feature = "gstd")]
pub mod gstd;
#[cfg(all(feature = "gtest", not(target_arch = "wasm32")))]
pub use gtest;
#[cfg(all(feature = "mockall", not(target_arch = "wasm32")))]
pub use mockall;
#[cfg(feature = "ethexe")]
mod address;
pub mod prelude;
#[cfg(feature = "ethexe")]
pub mod solidity;
pub mod state;
mod types;
mod utils;