2020-07-08 18:03:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Fluence Labs Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-09-02 23:46:38 +00:00
|
|
|
#![doc(html_root_url = "https://docs.rs/wit-support/0.2.2")]
|
2020-07-08 18:03:44 +00:00
|
|
|
#![deny(
|
|
|
|
dead_code,
|
|
|
|
nonstandard_style,
|
|
|
|
unused_imports,
|
|
|
|
unused_mut,
|
2020-07-28 13:49:10 +00:00
|
|
|
unused_variables,
|
2020-07-08 18:03:44 +00:00
|
|
|
unused_unsafe,
|
|
|
|
unreachable_patterns
|
|
|
|
)]
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
#![warn(rust_2018_idioms)]
|
|
|
|
|
|
|
|
/// This crate contains functions and types to support work with WebAssembly interface-types
|
|
|
|
/// in Fluence.
|
|
|
|
|
|
|
|
mod fce_ast_types;
|
|
|
|
mod fce_macro_impl;
|
|
|
|
mod parsed_type;
|
|
|
|
mod parse_macro_input;
|
|
|
|
mod token_stream_generator;
|
|
|
|
mod utils;
|
|
|
|
mod wasm_type;
|
|
|
|
|
|
|
|
pub use fce_ast_types::*;
|
|
|
|
pub use fce_macro_impl::fce;
|
|
|
|
pub use parsed_type::ParsedType;
|
2020-07-26 10:15:09 +00:00
|
|
|
pub use token_stream_generator::GENERATED_WRAPPER_FUNC_PREFIX;
|
2020-07-08 18:03:44 +00:00
|
|
|
pub use token_stream_generator::GENERATED_SECTION_PREFIX;
|
|
|
|
pub use token_stream_generator::GENERATED_GLOBAL_PREFIX;
|
2020-07-09 21:21:53 +00:00
|
|
|
pub use wasm_type::WasmType;
|