Merge Backend into EngineBuilder and refactor feature flags

This commit is contained in:
Manos Pitsidianakis
2022-07-27 15:50:30 +03:00
parent a1e82a501e
commit 214346af3b
69 changed files with 363 additions and 313 deletions

View File

@@ -307,8 +307,8 @@
#![cfg_attr(not(feature = "wat"), doc = "(disabled),")]
//! enables `wasmer` to parse the WebAssembly text format,
//! - `compilation`
#![cfg_attr(feature = "compilation", doc = "(enabled),")]
#![cfg_attr(not(feature = "compilation"), doc = "(disabled),")]
#![cfg_attr(feature = "compiler", doc = "(enabled),")]
#![cfg_attr(not(feature = "compiler"), doc = "(disabled),")]
//! enables compilation with the wasmer engine.
//!
//! The features that set defaults come in sets that are mutually exclusive.