diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 737c7d01baf..45b19802eec 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -126,4 +126,17 @@ static-artifact-load = ["wasmer-compiler/static-artifact-load"] static-artifact-create = ["wasmer-compiler/static-artifact-create"] [package.metadata.docs.rs] -features = ["compiler", "core", "cranelift", "engine", "jit", "native", "singlepass", "sys", "sys-default" ] +features = [ + "compiler", + "core", + "cranelift", + "engine", + "jit", + "singlepass", + "static-artifact-create", + "static-artifact-load", + "sys", + "sys-default", + "wasmer-artifact-create", + "wasmer-artifact-load", +] diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index 75624058775..dd6aac1a4a5 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -55,3 +55,11 @@ enable-serde = ["serde", "serde_bytes", "wasmer-types/enable-serde"] [badges] maintenance = { status = "experimental" } + +[package.metadata.docs.rs] +features = [ + "static-artifact-create", + "static-artifact-load", + "wasmer-artifact-create", + "wasmer-artifact-load", +]