[DOC] Removed paragraph about default-compiler, as it's doesn't exist anymore

This commit is contained in:
ptitSeb
2023-04-17 14:55:20 +02:00
parent 2cb70e6d25
commit 688b01825a

View File

@@ -311,21 +311,6 @@
#![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.
//!
//! The first set is the default compiler set:
//! - `default-cranelift`
#![cfg_attr(feature = "default-cranelift", doc = "(enabled),")]
#![cfg_attr(not(feature = "default-cranelift"), doc = "(disabled),")]
//! set Wasmer's Cranelift compiler as the default,
//! - `default-llvm`
#![cfg_attr(feature = "default-llvm", doc = "(enabled),")]
#![cfg_attr(not(feature = "default-llvm"), doc = "(disabled),")]
//! set Wasmer's LLVM compiler as the default,
//! - `default-singlepass`
#![cfg_attr(feature = "default-singlepass", doc = "(enabled),")]
#![cfg_attr(not(feature = "default-singlepass"), doc = "(disabled),")]
//! set Wasmer's Singlepass compiler as the default.
#![cfg_attr(
feature = "js",
doc = "## Features for the `js` feature group (enabled)"