Browse Source

Flag to rustdoc component support requires a feature (#5632)

This helps render the information "officially" in documentation.
pull/5638/head
Alex Crichton 2 years ago
committed by GitHub
parent
commit
38bf38c514
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      crates/wasmtime/src/component/mod.rs

2
crates/wasmtime/src/component/mod.rs

@ -3,6 +3,8 @@
//! This module is a work-in-progress and currently represents an incomplete and
//! probably buggy implementation of the component model.
#![cfg_attr(nightlydoc, doc(cfg(feature = "component-model")))]
mod component;
mod func;
mod instance;

Loading…
Cancel
Save